]> code.citadel.org Git - citadel.git/commitdiff
* Don't exit the server at the end of a session
authorArt Cancro <ajc@citadel.org>
Fri, 3 Dec 1999 16:39:00 +0000 (16:39 +0000)
committerArt Cancro <ajc@citadel.org>
Fri, 3 Dec 1999 16:39:00 +0000 (16:39 +0000)
webcit/auth.c

index 64147f1a1917de166230a53a6a156c3ddc9d5928..27a152cab6aefeab568ce9742029dbf2ab2bb57d 100644 (file)
@@ -199,7 +199,7 @@ void do_logout(void)
        wprintf("<HR><A HREF=\"/\">Log in again</A></CENTER>\n");
        wDumpContent(2);
        serv_puts("QUIT");
-       exit(0);
+       /* FIX  ...  do something here to flag the session for removal */
 }