fix dupe detection

This commit is contained in:
Enno Rehling 2017-08-09 19:18:45 +02:00 committed by Enno Rehling
parent c4f7e36903
commit 62d8024c49
1 changed files with 1 additions and 2 deletions

View File

@ -172,8 +172,7 @@ newfaction *read_newfactions(const char *filename)
sz += strlcat(password, itoa36(rng_int()), sizeof(password));
}
for (f = factions; f; f = f->next) {
if (strcmp(f->email, email) == 0 && f->subscription
&& f->age < MINAGE_MULTI) {
if (strcmp(f->email, email) == 0 && f->age < MINAGE_MULTI) {
log_warning("email %s already in use by %s", email, factionname(f));
break;
}