Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / m_pass.c
index c436ec8c2ff90fb2ea52b963c17832bf2400c3bd..5848c0e7883a7ffb8f5282ea04a6d9494f9c88b2 100644 (file)
  *            note:   it is guaranteed that parv[0]..parv[parc-1] are all
  *                    non-NULL pointers.
  */
-#if 0
-/*
- * No need to include handlers.h here the signatures must match
- * and we don't need to force a rebuild of all the handlers everytime
- * we add a new one to the list. --Bleep
- */
-#include "handlers.h"
-#endif /* 0 */
+#include "config.h"
+
 #include "client.h"
 #include "ircd_reply.h"
 #include "ircd_string.h"
@@ -114,31 +108,6 @@ int mr_pass(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
        /* Do something here */
   }
 #endif
-  ircd_strncpy(cptr->passwd, password, PASSWDLEN);
+  ircd_strncpy(cli_passwd(cptr), password, PASSWDLEN);
   return 0;
 }
-
-#if 0
-/*
- * m_pass
- *
- * parv[0] = sender prefix
- * parv[1] = password
- */
-int m_pass(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
-{
-  char *password = parc > 1 ? parv[1] : 0;
-
-  if (EmptyString(password))
-    return need_more_params(cptr, "PASS");
-
-  if (!MyConnect(sptr) || (!IsUnknown(cptr) && !IsHandshake(cptr)))
-  {
-    sendto_one(cptr, err_str(ERR_ALREADYREGISTRED), me.name, parv[0]); /* XXX DEAD */
-    return 0;
-  }
-  ircd_strncpy(cptr->passwd, password, PASSWDLEN);
-  return 0;
-}
-#endif
-