From a637ef05a557683002671282ca7516171df69499 Mon Sep 17 00:00:00 2001 From: Michael Hampton Date: Mon, 6 Sep 2004 01:11:36 +0000 Subject: [PATCH] * msgbase.c: cmd_ent0(): Fix another unbuffer_output() --- citadel/ChangeLog | 4 ++++ citadel/msgbase.c | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/citadel/ChangeLog b/citadel/ChangeLog index eb04434b1..5438ec57a 100644 --- a/citadel/ChangeLog +++ b/citadel/ChangeLog @@ -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 Fri Jul 10 1998 Art Cancro * Initial CVS import + diff --git a/citadel/msgbase.c b/citadel/msgbase.c index 17e9603cd..a0a76a6df 100644 --- a/citadel/msgbase.c +++ b/citadel/msgbase.c @@ -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); -- 2.39.2