From: Wilfried Göesgens Date: Thu, 9 Aug 2007 18:21:16 +0000 (+0000) Subject: * strlen hunt: messed brackets. X-Git-Tag: v7.86~3167 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=e188e74b9ef07ccfa1815a95c191eb43d1d89521 * strlen hunt: messed brackets. --- diff --git a/citadel/modules/imap/imap_fetch.c b/citadel/modules/imap/imap_fetch.c index 5c40d57a5..d13c84277 100644 --- a/citadel/modules/imap/imap_fetch.c +++ b/citadel/modules/imap/imap_fetch.c @@ -582,7 +582,9 @@ void imap_fetch_body(long msgnum, char *item, int is_peek) { if (strchr(section, '[') != NULL) { stripallbut(section, '[', ']'); } - lprintf(CTDL_DEBUG, "Section is: %s%s\n", section, ((IsEmptyStr(section)0) ? "(empty)" : "") ); + lprintf(CTDL_DEBUG, "Section is: %s%s\n", + section, + IsEmptyStr(section) ? "(empty)" : ""); if (!strncasecmp(section, "HEADER", 6)) { need_body = 0; }