]> granicus.if.org Git - mutt/commitdiff
Correct a fairly harmless typo parsing message \Recent flags.
authorPhil Pennock <mutt-dev@spodhuis.demon.nl>
Fri, 20 Jan 2006 21:21:31 +0000 (21:21 +0000)
committerPhil Pennock <mutt-dev@spodhuis.demon.nl>
Fri, 20 Jan 2006 21:21:31 +0000 (21:21 +0000)
imap/message.c

index 681b8feb6587c60293a37ea4998e4fafc498f269..3f12570041e34582f7d8e120fbdf4861afb2741d 100644 (file)
@@ -1184,7 +1184,7 @@ static char* msg_parse_flags (IMAP_HEADER* h, char* s)
       s += 5;
       hd->read = 1;
     }
-    else if (ascii_strncasecmp ("\\recent", s, 5) == 0)
+    else if (ascii_strncasecmp ("\\recent", s, 7) == 0)
       s += 7;
     else if (ascii_strncasecmp ("old", s, 3) == 0)
     {