From: Art Cancro Date: Sat, 15 Apr 2000 19:55:53 +0000 (+0000) Subject: * Fixed "Unvalidated users appear even with registration disabled" bug #36 X-Git-Tag: v7.86~7211 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=c5a94bab407255b03f431d4da9812c9999fe4572;p=citadel.git * Fixed "Unvalidated users appear even with registration disabled" bug #36 --- diff --git a/citadel/ChangeLog b/citadel/ChangeLog index cbe1dcc90..08e433057 100644 --- a/citadel/ChangeLog +++ b/citadel/ChangeLog @@ -1,4 +1,7 @@ $Log$ + Revision 571.1 2000/04/15 19:55:52 ajc + * Fixed "Unvalidated users appear even with registration disabled" bug #36 + Revision 571.0 2000/04/13 02:43:24 ajc * Fixed a problem that crashed the client during oto commands if a room existed with a name more than 32 characters (thanks to Magus for reporting @@ -1852,3 +1855,4 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant Fri Jul 10 1998 Art Cancro * Initial CVS import + diff --git a/citadel/user_ops.c b/citadel/user_ops.c index 6e69ef068..9954505e5 100644 --- a/citadel/user_ops.c +++ b/citadel/user_ops.c @@ -612,8 +612,7 @@ int create_user(char *newusername) (CC->logged_in) = 1; /* These are the default flags on new accounts */ - CC->usersupp.flags = - US_NEEDVALID|US_LASTOLD|US_DISAPPEAR|US_PAGINATOR|US_FLOORS; + CC->usersupp.flags = US_LASTOLD|US_DISAPPEAR|US_PAGINATOR|US_FLOORS; CC->usersupp.timescalled = 0; CC->usersupp.posted = 0;