* strlen hunt: messed brackets.
authorWilfried Göesgens <willi@citadel.org>
Thu, 9 Aug 2007 18:21:16 +0000 (18:21 +0000)
committerWilfried Göesgens <willi@citadel.org>
Thu, 9 Aug 2007 18:21:16 +0000 (18:21 +0000)
citadel/modules/imap/imap_fetch.c

index 5c40d57a57810564060cfe3aea2c9495855ac9fa..d13c84277fa3d1f215005e3a5da595404c0bd448 100644 (file)
@@ -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;
        }