From: Thomas Roessler Date: Tue, 4 Mar 2003 09:27:21 +0000 (+0000) Subject: Fix another stupid error, and decode IDNs in the CC header. X-Git-Tag: mutt-1-5-4-rel~27 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3a588db22cc78c1245b988494e8cf050a8489cce;p=mutt Fix another stupid error, and decode IDNs in the CC header. --- diff --git a/copy.c b/copy.c index 06a89f77..389608ed 100644 --- a/copy.c +++ b/copy.c @@ -807,7 +807,7 @@ static int address_header_decode (char **h) } case 'c': { - if (ascii_strncasecmp (s, "to:", 3)) + if (ascii_strncasecmp (s, "cc:", 3)) return 0; l = 3; break;