From 11e7e236d838174d4ab112c1464ee3b52cb8b046 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Fri, 14 Mar 2008 16:03:19 +0000 Subject: [PATCH] Fixed missing display of messages in SMTP queue. --- webcit/smtpqueue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webcit/smtpqueue.c b/webcit/smtpqueue.c index 9b9e5726f..1a2251aea 100644 --- a/webcit/smtpqueue.c +++ b/webcit/smtpqueue.c @@ -44,7 +44,7 @@ void display_queue_msg(long msgnum) } } - if ( (IsEmptyStr(buf) == 0) && (in_body == 0) ) { + if ( (IsEmptyStr(buf)) && (in_body == 0) ) { in_body = 1; } -- 2.30.2