From: dave%intrec.com <> Date: Sat, 2 Sep 2000 11:26:36 +0000 (+0000) Subject: Removing duplicate variable declaration from patch for bug 50698. The X-Git-Tag: bugzilla-2.12~177 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d4f0014aa753fcab4a4fc32f0ee13e5a3d31ac76;p=thirdparty%2Fbugzilla.git Removing duplicate variable declaration from patch for bug 50698. The sendmail deferred vs immediate delivery Param is now honored even in Perl 5.6. --- diff --git a/processmail b/processmail index 6004f66326..d96a6f96ef 100755 --- a/processmail +++ b/processmail @@ -587,7 +587,7 @@ sub NewProcessOnePerson ($$\@\%\%\%$$$$) { my $sendmailparam = "-ODeliveryMode=deferred"; if (Param("sendmailnow")) { - my $sendmailparam = ""; + $sendmailparam = ""; } open(SENDMAIL, "|/usr/lib/sendmail $sendmailparam -t") || die "Can't open sendmail"; @@ -654,7 +654,7 @@ sub ProcessOneBug { # harmless. my $sendmailparam = "-ODeliveryMode=deferred"; if (Param("sendmailnow")) { - my $sendmailparam = ""; + $sendmailparam = ""; } open(SENDMAIL, "|/usr/lib/sendmail $sendmailparam -t") ||