From: justdave%bugzilla.org <> Date: Mon, 24 May 2004 12:47:11 +0000 (+0000) Subject: Remove tabs accidently inserted with the checkin from bug 117279 (fix tinderbox ... X-Git-Tag: bugzilla-2.16.6~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b16b2b762d161057b3f5fac2daa2070bddb668b7;p=thirdparty%2Fbugzilla.git Remove tabs accidently inserted with the checkin from bug 117279 (fix tinderbox "test failed") --- diff --git a/processmail b/processmail index 3c3da8b9d9..70aaf528e4 100755 --- a/processmail +++ b/processmail @@ -269,9 +269,9 @@ sub ProcessOneBug { my %AlreadySeen = (); my $checkperson = ""; foreach my $person (@emailList) { - # don't modify the original so it sends out with the right case - # based on who came first. - $checkperson = lc($person); + # don't modify the original so it sends out with the right case + # based on who came first. + $checkperson = lc($person); if ( !($AlreadySeen{$checkperson}) ) { push(@allEmail,$person); $AlreadySeen{$checkperson}++; @@ -377,7 +377,7 @@ sub filterExcludeList ($$) { my $checkperson = ""; foreach my $person (@result) { - $checkperson = lc($person); + $checkperson = lc($person); if ( !($alreadySeen{$checkperson}) ) { push(@uniqueResult,$person); $alreadySeen{$checkperson}++;