From 7f6b8c40853eaec414109a23faf3a079274a6aee Mon Sep 17 00:00:00 2001 From: Brendan Cully Date: Tue, 2 Mar 2010 11:16:00 -0800 Subject: [PATCH] Fix thinko in [cc02f079b1b9] --- copy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 */ -- 2.40.0