summaryrefslogtreecommitdiffstats
path: root/processmail
diff options
context:
space:
mode:
authorterry%netscape.com <>1998-09-22 03:07:52 +0200
committerterry%netscape.com <>1998-09-22 03:07:52 +0200
commit0ae9721ec1e70c974e5bd1df974b43c409dcb3d3 (patch)
tree20e2c120ebb17c70fff624328ab9be19a1baddee /processmail
parent265635cb674d23161b51ff9a146853277fdded56 (diff)
downloadbugzilla-0ae9721ec1e70c974e5bd1df974b43c409dcb3d3.tar.gz
bugzilla-0ae9721ec1e70c974e5bd1df974b43c409dcb3d3.tar.xz
Was generating garbage instead of the Cc: line.
Diffstat (limited to 'processmail')
-rwxr-xr-xprocessmail2
1 files changed, 1 insertions, 1 deletions
diff --git a/processmail b/processmail
index ee6b92ad1..50b282b02 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";
}