]> code.citadel.org Git - citadel.git/commitdiff
* fix self-service account creation at login prompt (accidentally called
authorMichael Hampton <io_error@uncensored.citadel.org>
Fri, 18 Oct 2002 07:56:30 +0000 (07:56 +0000)
committerMichael Hampton <io_error@uncensored.citadel.org>
Fri, 18 Oct 2002 07:56:30 +0000 (07:56 +0000)
  CREU instead of NEWU).

citadel/ChangeLog
citadel/citadel.c

index cc2343c09950efe11e574ef9c11c236471834ef4..8c6554a23cbecdce0b3cb03e7e07d0f40e729e1c 100644 (file)
@@ -1,4 +1,8 @@
  $Log$
+ Revision 601.35  2002/10/18 07:56:30  error
+ * fix self-service account creation at login prompt (accidentally called
+   CREU instead of NEWU).
+
  Revision 601.34  2002/10/18 03:44:13  ajc
  * Fixed a bug in CtdlRenameRoom() that caused the old room record not to be
    deleted when there was a mailbox namespace attached.
@@ -4102,3 +4106,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 2c92308011abc4feb71a9fc4e807a23f790ac2f3..10ebb3045b787e18b94c1776c54688099d246ba6 100644 (file)
@@ -1171,7 +1171,7 @@ NEWUSR:   if (strlen(rc_password) == 0) {
                        goto GSTA;
        }
 
-       r = CtdlIPCCreateUser(ipc, fullname, 0, aaa);
+       r = CtdlIPCCreateUser(ipc, fullname, 1, aaa);
        if (r / 100 != 2) {
                scr_printf("%s\n", aaa);
                goto GSTA;