summaryrefslogtreecommitdiffstats
path: root/processmail
diff options
context:
space:
mode:
authorterry%netscape.com <>1999-04-22 07:21:40 +0200
committerterry%netscape.com <>1999-04-22 07:21:40 +0200
commitb7159d0b65d1be1211d79508427993dd3a0dfd5f (patch)
treec61afa449fb98d0d0ecc38b7a391a13480a41e06 /processmail
parentca0361863e6e8f8328f068b9ef25b4d55a5f841b (diff)
downloadbugzilla-b7159d0b65d1be1211d79508427993dd3a0dfd5f.tar.gz
bugzilla-b7159d0b65d1be1211d79508427993dd3a0dfd5f.tar.xz
Ignore blanks when doing diff. In particular, this helps hide any
problems we may have with differing end-of-line characters.
Diffstat (limited to 'processmail')
-rwxr-xr-xprocessmail2
1 files changed, 1 insertions, 1 deletions
diff --git a/processmail b/processmail
index bdd1f2c04..3da6448e1 100755
--- a/processmail
+++ b/processmail
@@ -253,7 +253,7 @@ foreach my $i (@ARGV) {
print FID $text;
close FID;
if (Different($old, $new)) {
- system("diff -c $old $new > $diffs");
+ system("diff -c -b $old $new > $diffs");
my $tolist = fixaddresses([$::bug{'assigned_to'}, $::bug{'reporter'},
$::bug{'qa_contact'}]);
my $cclist = fixaddresses($::bug{'cclist'});