summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5a6850e)
raw | patch | inline | side by side (parent: 5a6850e)
author | Kai Ruemmler <kai.ruemmler@gmx.net> | |
Sun, 9 Oct 2005 23:52:50 +0000 (16:52 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sun, 9 Oct 2005 23:52:50 +0000 (16:52 -0700) |
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>
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>
patch-id.c | patch | blob | history |
diff --git a/patch-id.c b/patch-id.c
index 5a8dc75d0e0184f8a4afa53e22b44d20f060685f..960e7cedf9d55f8a8fa9dba38a2b69d5f622212d 100644 (file)
--- a/patch-id.c
+++ b/patch-id.c
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;