From 286d258d4f8b6f67676b1c50c2fd07a577450518 Mon Sep 17 00:00:00 2001 From: Stefan Beller Date: Thu, 28 Jun 2018 18:22:20 -0700 Subject: tag.c: allow deref_tag to handle arbitrary repositories Signed-off-by: Stefan Beller Signed-off-by: Junio C Hamano --- tag.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'tag.c') diff --git a/tag.c b/tag.c index 682e779305..94a89b21cb 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) { -- cgit v1.2.3