]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Ignore blanks when doing diff. In particular, this helps hide any
authorterry%netscape.com <>
Thu, 22 Apr 1999 05:21:40 +0000 (05:21 +0000)
committerterry%netscape.com <>
Thu, 22 Apr 1999 05:21:40 +0000 (05:21 +0000)
problems we may have with differing end-of-line characters.

processmail

index bdd1f2c0452eda1e0b98ad8436fd7b8d53e50982..3da6448e170ef3b3e32017153790a8152ac6b3f6 100755 (executable)
@@ -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'});