From: Brendan Cully Date: Tue, 2 Mar 2010 19:16:00 +0000 (-0800) Subject: Fix thinko in [cc02f079b1b9] X-Git-Tag: mutt-1-5-21-rel~92 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f6b8c40853eaec414109a23faf3a079274a6aee;p=mutt Fix thinko in [cc02f079b1b9] --- diff --git a/copy.c b/copy.c index 7e1c654d..62f27277 100644 --- a/copy.c +++ b/copy.c @@ -939,8 +939,8 @@ static int address_header_decode (char **h) mutt_addrlist_to_local (a); rfc2047_decode_adrlist (a); for (cur = a; cur; cur = cur->next) - if (a->personal) - rfc822_dequote_comment (a->personal); + if (cur->personal) + rfc822_dequote_comment (cur->personal); /* angle brackets for return path are mandated by RfC5322, * so leave Return-Path as-is */