hook: use correct logical variable
[gitweb.git] / apply.c
diff --git a/apply.c b/apply.c
index c442b8932823ac0bc104d094a2b372a974ee8217..946be4d2f553813a3df7b513c816f002591fd89f 100644 (file)
--- a/apply.c
+++ b/apply.c
@@ -976,8 +976,7 @@ static int gitdiff_verify_name(struct apply_state *state,
                }
                free(another);
        } else {
-               /* expect "/dev/null" */
-               if (memcmp("/dev/null", line, 9) || line[9] != '\n')
+               if (!starts_with(line, "/dev/null\n"))
                        return error(_("git apply: bad git-diff - expected /dev/null on line %d"), state->linenr);
        }