From a1b9fd75f6798f9dac2c9b4957bc08a62362496c Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Sat, 22 Oct 2005 04:59:41 +0000 Subject: [PATCH] minor fix for previous checkin --- citadel/msgbase.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citadel/msgbase.c b/citadel/msgbase.c index cb11932aa..dfb033cef 100644 --- a/citadel/msgbase.c +++ b/citadel/msgbase.c @@ -1313,7 +1313,7 @@ int CtdlOutputMsg(long msg_num, /* message number (local) to fetch */ /* Here is the weird form of this command, to process only an * encapsulated message/rfc822 section. */ - if (section) { + if (section) if (strlen(section)>0) if (strcmp(section, "0")) { memset(&encap, 0, sizeof encap); safestrncpy(encap.desired_section, section, sizeof encap.desired_section); mime_parser(TheMessage->cm_fields['M'], -- 2.39.2