* Fixed "Unvalidated users appear even with registration disabled" bug #36
authorArt Cancro <ajc@citadel.org>
Sat, 15 Apr 2000 19:55:53 +0000 (19:55 +0000)
committerArt Cancro <ajc@citadel.org>
Sat, 15 Apr 2000 19:55:53 +0000 (19:55 +0000)
citadel/ChangeLog
citadel/user_ops.c

index cbe1dcc9026d6c9a327a49674bbd0b2480e15096..08e43305787c7d5ad99f9ee77b93a8d5102538cc 100644 (file)
@@ -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 <G>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 <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
        * Initial CVS import 
+
index 6e69ef068a494213248394790714b97e9c9262b4..9954505e58d43a5a17a9742c0bf93b6ca10fba87 100644 (file)
@@ -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;