]> code.citadel.org Git - citadel.git/commitdiff
* Fixed logged_in_response() so it only displays responses during Citadel
authorArt Cancro <ajc@citadel.org>
Thu, 21 Sep 2000 04:16:44 +0000 (04:16 +0000)
committerArt Cancro <ajc@citadel.org>
Thu, 21 Sep 2000 04:16:44 +0000 (04:16 +0000)
  protocol sessions.  (This was affecting POP etc.)

citadel/ChangeLog
citadel/user_ops.c

index 9fe6b02b6fe930bf942cf739932bb8fce81e423f..da6ed721263350da5f15201022322f25c6096447 100644 (file)
@@ -1,4 +1,8 @@
  $Log$
+ Revision 573.2  2000/09/21 04:16:44  ajc
+ * Fixed logged_in_response() so it only displays responses during Citadel
+   protocol sessions.  (This was affecting POP etc.)
+
  Revision 573.1  2000/09/11 22:05:04  ajc
  * citadel.c: accept -h <host> and -p arguments, so citadel can be called
    directly by telnetd, bypassing /bin/login.  It works, but not recommended at
@@ -2056,3 +2060,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 ce88b2cd62ba6992ca4f165b99267f1ace08834a..fcc00eba090c91ec5d238ac460d519a5ee438492 100644 (file)
@@ -464,7 +464,6 @@ void do_login()
 {
        (CC->logged_in) = 1;
        session_startup();
-       logged_in_response();
 }
 
 
@@ -531,6 +530,7 @@ void cmd_pass(char *buf)
                        cprintf("%d Wrong password.\n", ERROR);
                        return;
                case pass_ok:
+                       logged_in_response();
                        return;
                cprintf("%d Can't find user record!\n",
                        ERROR+INTERNAL_ERROR);