* msgbase.c: cmd_ent0(): Fix another unbuffer_output()
authorMichael Hampton <io_error@uncensored.citadel.org>
Mon, 6 Sep 2004 01:11:36 +0000 (01:11 +0000)
committerMichael Hampton <io_error@uncensored.citadel.org>
Mon, 6 Sep 2004 01:11:36 +0000 (01:11 +0000)
citadel/ChangeLog
citadel/msgbase.c

index eb04434b1766f6024bffd6821fe6891226e9df91..5438ec57a670d83e939535bd6a14e825f2edb98d 100644 (file)
@@ -1,4 +1,7 @@
  $Log$
+ Revision 625.15  2004/09/06 01:11:35  error
+ * msgbase.c: cmd_ent0(): Fix another unbuffer_output()
+
  Revision 625.14  2004/09/06 00:59:01  error
  * file_ops.c: cmd_writ(): Add an unbuffer_output() that I forgot.
 
@@ -6054,3 +6057,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 17e9603cd9a9f8d474786867c14215e85ad1efdf..a0a76a6dfdf699db53db4ab02591bb63e6e5b884 100644 (file)
@@ -2672,6 +2672,8 @@ void cmd_ent0(char *entargs)
        struct recptypes *valid = NULL;
        char subject[SIZ];
 
+       unbuffer_output();
+
        post = extract_int(entargs, 0);
        extract(recp, entargs, 1);
        anon_flag = extract_int(entargs, 2);
@@ -2788,7 +2790,6 @@ void cmd_ent0(char *entargs)
 
        /* Read in the message from the client. */
        cprintf("%d send message\n", SEND_LISTING);
-       flush_output();
        msg = CtdlMakeMessage(&CC->user, recp,
                CC->room.QRname, anonymous, format_type,
                masquerade_as, subject, NULL);