Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / m_pass.c
index 50870b2b536d91de439c60bb5613f55149e756c1..2087118d6b2400dddb256f744238d431e75b6ef7 100644 (file)
@@ -128,7 +128,7 @@ int m_pass(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
 
   if (!MyConnect(sptr) || (!IsUnknown(cptr) && !IsHandshake(cptr)))
   {
-    sendto_one(cptr, err_str(ERR_ALREADYREGISTRED), me.name, parv[0]);
+    sendto_one(cptr, err_str(ERR_ALREADYREGISTRED), me.name, parv[0]); /* XXX DEAD */
     return 0;
   }
   ircd_strncpy(cptr->passwd, password, PASSWDLEN);