summaryrefslogtreecommitdiff
path: root/builtin/show-ref.c
diff options
context:
space:
mode:
authorVladimir Panteleev <git@thecybershadow.net>2017-01-23 18:00:59 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-01-23 20:06:30 (GMT)
commit02bdc9d9f6ef6ae2f304121a0cf169f7c50f2370 (patch)
treea9699073c66e5308f84cbdf0784171c89a0f8a19 /builtin/show-ref.c
parentd01b8203ec24732e5e8829db44a8150468f2fb7d (diff)
downloadgit-02bdc9d9f6ef6ae2f304121a0cf169f7c50f2370.zip
git-02bdc9d9f6ef6ae2f304121a0cf169f7c50f2370.tar.gz
git-02bdc9d9f6ef6ae2f304121a0cf169f7c50f2370.tar.bz2
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 <git@thecybershadow.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/show-ref.c')
-rw-r--r--builtin/show-ref.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/builtin/show-ref.c b/builtin/show-ref.c
index 107d05f..2dfcb56 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;
}