X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=citadel%2Fserver%2Fuser_ops.c;fp=citadel%2Fserver%2Fuser_ops.c;h=e35b00a27e71b222b20c5f3772b9b7aaac255552;hp=61183bcc06c1274834c2bff5f5a26278aa372e07;hb=1d8bbd8d311dc3f70985d9087df4b499db9c4327;hpb=cf535e06bb503583c301683ea885220df1b276d5 diff --git a/citadel/server/user_ops.c b/citadel/server/user_ops.c index 61183bcc0..e35b00a27 100644 --- a/citadel/server/user_ops.c +++ b/citadel/server/user_ops.c @@ -505,7 +505,7 @@ int CtdlLoginExistingUser(const char *trythisname) { // If that didn't work, try to log in as if the supplied name * is an e-mail address if (found_user != 0) { - valid = validate_recipients(username, NULL, 0); + valid = validate_recipients(username, 0); if (valid != NULL) { if (valid->num_local == 1) { found_user = CtdlGetUser(&CC->user, valid->recp_local);