summaryrefslogtreecommitdiff
path: root/imap/src/imapd
diff options
context:
space:
mode:
Diffstat (limited to 'imap/src/imapd')
-rw-r--r--imap/src/imapd/imapd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/imap/src/imapd/imapd.c b/imap/src/imapd/imapd.c
index 980eadec..1c1d4011 100644
--- a/imap/src/imapd/imapd.c
+++ b/imap/src/imapd/imapd.c
@@ -2333,7 +2333,7 @@ STRINGLIST *parse_stringlist (unsigned char **s,int *list)
/* must be end of list */
if (c != ')') mail_free_stringlist (&ret);
}
- if ((t = *s) != '\0') { /* need to reload strtok state? */
+ if ((t = *s) != NULL) { /* need to reload strtok state? */
/* end of a list? */
if (*list && (*t == ')') && !t[1]) *list = NIL;
else sstate = t; /* otherwise reset strtok state to s */