From e188e74b9ef07ccfa1815a95c191eb43d1d89521 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Thu, 9 Aug 2007 18:21:16 +0000 Subject: [PATCH] * strlen hunt: messed brackets. --- citadel/modules/imap/imap_fetch.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; } -- 2.30.2