diff options
| author | Junio C Hamano <gitster@pobox.com> | 2026-01-08 16:40:11 +0900 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2026-01-08 16:40:11 +0900 |
| commit | d28d2be5f2aa6acbd0c86b8fbae68cd222de3f4f (patch) | |
| tree | dc76572fbf677e72117a545e2b0da7d4fe94e889 /object-name.c | |
| parent | e0bfec3dfc356f7d808eb5ee546a54116b794397 (diff) | |
| parent | 009fceeda26e12e2dbacd04eef47c62d4e206403 (diff) | |
| download | git-d28d2be5f2aa6acbd0c86b8fbae68cd222de3f4f.tar.xz | |
Merge branch 'rs/tag-wo-the-repository'
Code clean-up.
* rs/tag-wo-the-repository:
tag: stop using the_repository
tag: support arbitrary repositories in parse_tag()
tag: support arbitrary repositories in gpg_verify_tag()
tag: use algo of repo parameter in parse_tag_buffer()
Diffstat (limited to 'object-name.c')
| -rw-r--r-- | object-name.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/object-name.c b/object-name.c index fed5de5153..8b862c124e 100644 --- a/object-name.c +++ b/object-name.c @@ -449,7 +449,7 @@ static int show_ambiguous_object(const struct object_id *oid, void *data) } else if (type == OBJ_TAG) { struct tag *tag = lookup_tag(ds->repo, oid); - if (!parse_tag(tag) && tag->tag) { + if (!parse_tag(ds->repo, tag) && tag->tag) { /* * TRANSLATORS: This is a line of ambiguous * tag object output. E.g.: |
