From: Michael Elkins Date: Tue, 24 Aug 2010 17:03:44 +0000 (-0700) Subject: add REG_ICASE accidentally removed in changeset 1a35f096c8cb X-Git-Tag: mutt-1-5-21-rel~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3f5d475c5229acc03a7b96e789f1d0763f0635d8;p=mutt add REG_ICASE accidentally removed in changeset 1a35f096c8cb --- diff --git a/init.c b/init.c index 656fe145..b40c6eb1 100644 --- a/init.c +++ b/init.c @@ -967,7 +967,7 @@ static int parse_attach_list (BUFFER *buf, BUFFER *s, LIST **ldata, BUFFER *err) tmpminor[len+2] = '\0'; a->major_int = mutt_check_mime_type(a->major); - ret = REGCOMP(&a->minor_rx, tmpminor, 0); + ret = REGCOMP(&a->minor_rx, tmpminor, REG_ICASE); FREE(&tmpminor);