diff options
author | terry%netscape.com <> | 1999-04-22 07:21:40 +0200 |
---|---|---|
committer | terry%netscape.com <> | 1999-04-22 07:21:40 +0200 |
commit | b7159d0b65d1be1211d79508427993dd3a0dfd5f (patch) | |
tree | c61afa449fb98d0d0ecc38b7a391a13480a41e06 /processmail | |
parent | ca0361863e6e8f8328f068b9ef25b4d55a5f841b (diff) | |
download | bugzilla-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-x | processmail | 2 |
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'}); |