summaryrefslogtreecommitdiff
path: root/tag.c
diff options
context:
space:
mode:
authorStefan Beller <sbeller@google.com>2018-06-29 01:22:20 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-06-29 17:43:40 (GMT)
commit286d258d4f8b6f67676b1c50c2fd07a577450518 (patch)
tree9021869684426925dce04a4d57efce157e49cce3 /tag.c
parent8e4b0b6047e3cfbe627de6694c2eeae6904b41a1 (diff)
downloadgit-286d258d4f8b6f67676b1c50c2fd07a577450518.zip
git-286d258d4f8b6f67676b1c50c2fd07a577450518.tar.gz
git-286d258d4f8b6f67676b1c50c2fd07a577450518.tar.bz2
tag.c: allow deref_tag to handle arbitrary repositories
Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/tag.c b/tag.c
index 682e779..94a89b2 100644
--- a/tag.c
+++ b/tag.c
@@ -64,12 +64,11 @@ int gpg_verify_tag(const struct object_id *oid, const char *name_to_report,
return ret;
}
-struct object *deref_tag_the_repository(struct object *o, const char *warn, int warnlen)
+struct object *deref_tag(struct repository *r, struct object *o, const char *warn, int warnlen)
{
while (o && o->type == OBJ_TAG)
if (((struct tag *)o)->tagged)
- o = parse_object(the_repository,
- &((struct tag *)o)->tagged->oid);
+ o = parse_object(r, &((struct tag *)o)->tagged->oid);
else
o = NULL;
if (!o && warn) {