diff options
-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'}); |