Commit Diff


commit - 408a74b86582a2fc315d61880f30d4ac050d8d8a
commit + af13732ec7bb09c9e1bc942a355990ab2767eca7
blob - 48000bacde0e7d7a7bd9dbb9d7500c7e15aa1329
blob + 092ca0a3957dd2896ce6d01fafa4efb91fcbab07
--- src/ngircd/irc-info.c
+++ src/ngircd/irc-info.c
@@ -188,7 +188,7 @@ IRC_ISON( CLIENT *Client, REQUEST *Req )
 			ngt_TrimStr(ptr);
 			c = Client_Search(ptr);
 			if (c && Client_Type(c) == CLIENT_USER) {
-				strlcat(rpl, ptr, sizeof(rpl));
+				strlcat(rpl, Client_ID(c), sizeof(rpl));
 				strlcat(rpl, " ", sizeof(rpl));
 			}
 			ptr = strtok(NULL, " ");