validate_recipients() - completed removal of unused param
[citadel.git] / citadel / server / user_ops.c
index 61183bcc06c1274834c2bff5f5a26278aa372e07..e35b00a27e71b222b20c5f3772b9b7aaac255552 100644 (file)
@@ -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);