]> granicus.if.org Git - mutt/commitdiff
fix another case-sensitive comparison.
authorThomas Roessler <roessler@does-not-exist.org>
Mon, 14 Jan 2002 09:03:31 +0000 (09:03 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Mon, 14 Jan 2002 09:03:31 +0000 (09:03 +0000)
imap/imap.c

index 3059d7ac7852eb3279a250bc34e447f6ddbb6964..983a51b4b85a4d8cff69b52759eb34cedf36f449 100644 (file)
@@ -1289,7 +1289,7 @@ int imap_parse_list_response(IMAP_DATA* idata, char **name, int *noselect,
       return 0;
     s = imap_next_word (s); /* delim */
     /* Reset the delimiter, this can change */
-    if (ascii_strncmp (s, "NIL", 3))
+    if (ascii_strncasecmp (s, "NIL", 3))
     {
       if (s && s[0] == '\"' && s[1] && s[2] == '\"')
        *delim = s[1];