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 /ref-filter.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 'ref-filter.c')
| -rw-r--r-- | ref-filter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ref-filter.c b/ref-filter.c index d7454269e8..c318f9ca0e 100644 --- a/ref-filter.c +++ b/ref-filter.c @@ -2866,7 +2866,7 @@ static int match_points_at(struct oid_array *points_at, while (obj && obj->type == OBJ_TAG) { struct tag *tag = (struct tag *)obj; - if (parse_tag(tag) < 0) { + if (parse_tag(the_repository, tag) < 0) { obj = NULL; break; } |
