* On a new system, set the default new user level to 4 instead of 1.
authorArt Cancro <ajc@citadel.org>
Sun, 2 Dec 2001 23:36:24 +0000 (23:36 +0000)
committerArt Cancro <ajc@citadel.org>
Sun, 2 Dec 2001 23:36:24 +0000 (23:36 +0000)
citadel/ChangeLog
citadel/setup.c

index 6ee4db2b3ec43d93984c4b377b07a27f208ef385..464d897100e74c19331865318b41b7c2f75ab698 100644 (file)
@@ -1,4 +1,7 @@
  $Log$
+ Revision 580.86  2001/12/02 23:36:24  ajc
+ * On a new system, set the default new user level to 4 instead of 1.
+
  Revision 580.85  2001/12/02 23:27:01  ajc
  * Removed references to the old networker from the documentation.  Did not
    write any new documentation, so what's there now is kind of sparse.
@@ -2901,3 +2904,4 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import 
+
index fb6cb0333d57fd57432e8f0b51e5f7247939086c..a9811fb7806a04e0a0018df23be76141bf25b23f 100644 (file)
@@ -794,8 +794,9 @@ int main(int argc, char *argv[])
                strcpy(config.c_humannode, "My System");
        if (strlen(config.c_phonenum) == 0)
                strcpy(config.c_phonenum, "US 800 555 1212");
-       if (config.c_initax == 0)
-               config.c_initax = 1;
+       if (config.c_initax == 0) {
+               config.c_initax = 4;
+       }
        if (strlen(config.c_moreprompt) == 0)
                strcpy(config.c_moreprompt, "<more>");
        if (strlen(config.c_twitroom) == 0)