From b7159d0b65d1be1211d79508427993dd3a0dfd5f Mon Sep 17 00:00:00 2001 From: "terry%netscape.com" <> Date: Thu, 22 Apr 1999 05:21:40 +0000 Subject: Ignore blanks when doing diff. In particular, this helps hide any problems we may have with differing end-of-line characters. --- processmail | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'processmail') 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'}); -- cgit v1.2.3-24-g4f1b