don't set an empty password or auth_user

This commit is contained in:
Stephen Bennett 2008-08-29 14:47:51 -05:00
parent 978daf7118
commit 1d53b4283b
1 changed files with 2 additions and 2 deletions

View File

@ -83,9 +83,9 @@ mr_pass(struct Client *client_p, struct Client *source_p, int parc, const char *
auth_user = NULL;
}
client_p->localClient->passwd = rb_strndup(pass, PASSWDLEN);
client_p->localClient->passwd = *pass ? rb_strndup(pass, PASSWDLEN) : NULL;
if(auth_user)
if(auth_user && *auth_user)
client_p->localClient->auth_user = rb_strndup(auth_user, PASSWDLEN);
/* These are for servers only */