Pass the other two USER parameters to iauth.
[ircu2.10.12-pk.git] / ircd / m_user.c
index babbd34d88641fcc237dec4889994c00feb8a3a1..17fa10042d7fa83e0d5391273e218cc1388c7930 100644 (file)
@@ -139,6 +139,6 @@ int m_user(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
 
   info     = (EmptyString(parv[4])) ? "No Info" : parv[4];
 
-  return auth_set_user(cli_auth(cptr), username, info);
+  return auth_set_user(cli_auth(cptr), username, parv[2], parv[3], info);
 }