[dovecot-cvs] dovecot/src/imap imap-fetch-body-section.c,1.16,1.17

cras at procontrol.fi cras at procontrol.fi
Sun Sep 21 20:14:40 EEST 2003


Update of /home/cvs/dovecot/src/imap
In directory danu:/tmp/cvs-serv25530

Modified Files:
	imap-fetch-body-section.c 
Log Message:
Compiler warning fix


Index: imap-fetch-body-section.c
===================================================================
RCS file: /home/cvs/dovecot/src/imap/imap-fetch-body-section.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- imap-fetch-body-section.c	15 Sep 2003 18:04:12 -0000	1.16
+++ imap-fetch-body-section.c	21 Sep 2003 16:14:38 -0000	1.17
@@ -414,7 +414,7 @@
 		num = 0;
 		while (*path != '\0' && *path != '.') {
 			if (*path < '0' || *path > '9')
-				return NULL;
+				return FALSE;
 			num = num*10 + (*path - '0');
 			path++;
 		}



More information about the dovecot-cvs mailing list