diff options
author | Kai Ruemmler <kai.ruemmler@gmx.net> | 2005-10-09 16:52:50 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-09 16:52:50 -0700 |
commit | 9fabdedc0edd4ff150197a53cc3032e7bf27c4d4 (patch) | |
tree | a62823e67542b7a8fa0ad5d6638387573ae3d194 | |
parent | Fix git-verify-tag for light-weight tags (diff) | |
download | tgif-9fabdedc0edd4ff150197a53cc3032e7bf27c4d4.tar.xz |
ignore new git-diff index header when computing patch ids
Two else equal patches should not result in different checksums, only
because they were applied to different versions of the file.
Signed-off-by: Kai Ruemmler <kai.ruemmler@gmx.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r-- | patch-id.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/patch-id.c b/patch-id.c index 5a8dc75d0e..960e7cedf9 100644 --- a/patch-id.c +++ b/patch-id.c @@ -55,6 +55,10 @@ static void generate_id_list(void) if (!patchlen && memcmp(line, "diff ", 5)) continue; + /* Ignore git-diff index header */ + if (!memcmp(line, "index ", 6)) + continue; + /* Ignore line numbers when computing the SHA1 of the patch */ if (!memcmp(line, "@@ -", 4)) continue; |