From: Wayne Davison Date: Wed, 23 Mar 2005 17:58:28 +0000 (+0000) Subject: Get rid of all decimal-time values in the diff headers, X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/commitdiff_plain/97cd3b18fe17996b1eaf92d48eb555a54ad949a7 Get rid of all decimal-time values in the diff headers, not just an all-zero value. --- diff --git a/verify-patches b/verify-patches index d4d2fcc..8245bdf 100755 --- a/verify-patches +++ b/verify-patches @@ -241,7 +241,7 @@ sub generate_new_patch next if /^(diff -|Index: |Only in )/; s#^\Q--- cvsdir/\E#--- orig/#; s#^\Q+++ workdir/\E#+++ #; - s#(\.000000000)? \+0000$##; + s#(\d\d\d\d-\d\d-\d\d \d\d:\d\d:\d\d)(\.\d\d\d\d\d\d\d\d\d)? \+0000$#$1#; print OUT $_; } close IN;