X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=patch-id.c;h=960e7cedf9d55f8a8fa9dba38a2b69d5f622212d;hb=a7a8d3786e6b60a472d0f88f778cacaead122a6c;hp=5a8dc75d0e0184f8a4afa53e22b44d20f060685f;hpb=54c6870ebf4c364dd809a1a58eb8485855344812;p=git.git diff --git a/patch-id.c b/patch-id.c index 5a8dc75d..960e7ced 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;