From c6661d26382f5166055b1c02c4c2bd7c6dc11e64 Mon Sep 17 00:00:00 2001 From: "dave%intrec.com" Date: Sat, 2 Sep 2000 04:26:36 +0000 Subject: [PATCH] Removing duplicate variable declaration from patch for bug 50698. The sendmail deferred vs immediate delivery Param is now honored even in Perl 5.6. --- webtools/bugzilla/processmail | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webtools/bugzilla/processmail b/webtools/bugzilla/processmail index 6004f66326ce..d96a6f96ef1f 100755 --- a/webtools/bugzilla/processmail +++ b/webtools/bugzilla/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") ||