From: terry%netscape.com <> Date: Tue, 22 Sep 1998 01:07:52 +0000 (+0000) Subject: Was generating garbage instead of the Cc: line. X-Git-Tag: bugzilla-2.2~93 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ae9721ec1e70c974e5bd1df974b43c409dcb3d3;p=thirdparty%2Fbugzilla.git Was generating garbage instead of the Cc: line. --- diff --git a/processmail b/processmail index ee6b92ad14..50b282b020 100755 --- a/processmail +++ b/processmail @@ -99,7 +99,7 @@ sub DescCC { if (scalar(@$cclist) <= 0) { return ""; } - return "Cc: " . join(", ", $cclist) . "\n"; + return "Cc: " . join(", ", @$cclist) . "\n"; }