Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / m_userhost.c
index 4a7811ebf3d57b7be6c491c55011ec776c09f153..b372e582446b82318682e23a6cccd7395f29cd47 100644 (file)
@@ -156,12 +156,12 @@ int m_userhost(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
     {
       if (i < j)
         sendbufto_one(sptr);
-      sendto_one(sptr, err_str(ERR_NOSUCHNICK), me.name, parv[0], s);
+      sendto_one(sptr, err_str(ERR_NOSUCHNICK), me.name, parv[0], s); /* XXX DEAD */
       sbuf = sprintf_irc(sendbuf, rpl_str(RPL_USERHOST), me.name, parv[0]);
       j = i - 1;
     }
   if (j)
-    sendbufto_one(sptr);
+    sendbufto_one(sptr); /* XXX DEAD */
   return 0;
 }
 #endif