From: Timo Sirainen Date: Sun, 21 Sep 2003 16:14:38 +0000 (+0300) Subject: Compiler warning fix X-Git-Tag: 1.1.alpha1~4325 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ceed08724fc7389ca4e60afa4dadd06b8f72bd0f;p=thirdparty%2Fdovecot%2Fcore.git Compiler warning fix --HG-- branch : HEAD --- diff --git a/src/imap/imap-fetch-body-section.c b/src/imap/imap-fetch-body-section.c index 4ac16d5ffe..4a4e0ce464 100644 --- a/src/imap/imap-fetch-body-section.c +++ b/src/imap/imap-fetch-body-section.c @@ -414,7 +414,7 @@ static int part_find(struct mail *mail, const struct imap_fetch_body_data *body, num = 0; while (*path != '\0' && *path != '.') { if (*path < '0' || *path > '9') - return NULL; + return FALSE; num = num*10 + (*path - '0'); path++; }