Quash various warnings from higher levels of compiler warnings.
[ircu2.10.12-pk.git] / ircd / m_pass.c
index eb08e9f6b6a22a36b0e77947e56721480de1692e..e34e6819aba9b17c7a183417cf5ab76632b2ee44 100644 (file)
@@ -116,7 +116,7 @@ int mr_pass(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
     --len;
   password[len] = '\0';
 
-  if (EmptyString(password))
+  if (password[0] == '\0')
     return need_more_params(cptr, "PASS");
 
   ircd_strncpy(cli_passwd(cptr), password, PASSWDLEN);