diff --git a/ChangeLog b/ChangeLog index 53bae966..09945f5f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -53,6 +53,7 @@ v0.35.03 06-Jul-2002 Check for existing Unix names now also includes the name ping and services names. Check for handle now also checks Unix names. + The setting for single usernames does work again. mbsebbs: Check existing usernames now also checks handles. diff --git a/mbsebbs/newuser.c b/mbsebbs/newuser.c index 324cee68..e79e2394 100644 --- a/mbsebbs/newuser.c +++ b/mbsebbs/newuser.c @@ -136,7 +136,7 @@ int newuser() * Check name, duplicate names, unwanted names, single names, they all get * the same errormessage. */ - badname = (BadNames(temp) || (CheckName(temp) || (strchr(temp, ' ') == NULL))); + badname = (BadNames(temp) || CheckName(temp) || ((strchr(temp, ' ') == NULL) && !CFG.iOneName)); if (badname) { /* That login name already exists, please choose another one. */ language(LIGHTRED, BLACK, 386);