X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=citadel%2Fmodules%2Fupgrade%2Fserv_upgrade.c;h=86e2947f440bf5e072a19756abc7a1569de49f2c;hp=1d29cfcd10d9ceea211857b6afa586a1b28bf0c7;hb=f59e2e6772d87d323d065f09919ec0876bf2e0be;hpb=a2ae8dfea31fc1495e3a97b28f3ddca01f491bef diff --git a/citadel/modules/upgrade/serv_upgrade.c b/citadel/modules/upgrade/serv_upgrade.c index 1d29cfcd1..86e2947f4 100644 --- a/citadel/modules/upgrade/serv_upgrade.c +++ b/citadel/modules/upgrade/serv_upgrade.c @@ -4,7 +4,7 @@ * guesses about what kind of data format changes need to be applied, and * we apply them transparently. * - * Copyright (c) 1987-2019 by the citadel.org team + * Copyright (c) 1987-2020 by the citadel.org team * * This program is open source software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version 3. @@ -84,7 +84,7 @@ void fix_sys_user_name(void) /* Delete any "user 0" accounts */ while (CtdlGetUserByNumber(&usbuf, -1) == 0) { - makeuserkey(usernamekey, usbuf.fullname, cutusername(usbuf.fullname)); + makeuserkey(usernamekey, usbuf.fullname); cdb_delete(CDB_USERS, usernamekey, strlen(usernamekey)); } }