]> asedeno.scripts.mit.edu Git - git.git/blobdiff - builtin-apply.c
show -c: show patch text
[git.git] / builtin-apply.c
index b99db0b80027685190eb14bf036b8eec8e4f76b2..2a1004d025fcfdea4d317ef3236ff6bc76e3e65a 100644 (file)
@@ -692,7 +692,7 @@ static char *gitdiff_verify_name(const char *line, int isnull, char *orig_name,
                if (isnull)
                        die("git apply: bad git-diff - expected /dev/null, got %s on line %d", name, linenr);
                another = find_name(line, NULL, p_value, TERM_TAB);
-               if (!another || memcmp(another, name, len))
+               if (!another || memcmp(another, name, len + 1))
                        die("git apply: bad git-diff - inconsistent %s filename on line %d", oldnew, linenr);
                free(another);
                return orig_name;