From 02bdc9d9f6ef6ae2f304121a0cf169f7c50f2370 Mon Sep 17 00:00:00 2001 From: Vladimir Panteleev Date: Mon, 23 Jan 2017 18:00:59 +0000 Subject: [PATCH] show-ref: remove dead `if (verify)' check As show_ref() is only ever called on the path where --verify is not specified, `verify' can never possibly be true here. Signed-off-by: Vladimir Panteleev Signed-off-by: Junio C Hamano --- builtin/show-ref.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/builtin/show-ref.c b/builtin/show-ref.c index 107d05fe0..2dfcb5634 100644 --- a/builtin/show-ref.c +++ b/builtin/show-ref.c @@ -73,9 +73,6 @@ static int show_ref(const char *refname, const struct object_id *oid, continue; if (len == reflen) goto match; - /* "--verify" requires an exact match */ - if (verify) - continue; if (refname[reflen - len - 1] == '/') goto match; } -- 2.11.0