diff options
| author | Patrick Steinhardt <ps@pks.im> | 2026-02-23 12:59:39 +0100 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2026-02-23 13:21:18 -0800 |
| commit | 635f08b7394b9dda013a0b78f4db11348dc7717b (patch) | |
| tree | 388f143a626b9db6b373630de1abe7f3b32de59d /upload-pack.c | |
| parent | 8f0720a5a781562fb1f750b351e14129fc8930ea (diff) | |
| download | git-635f08b7394b9dda013a0b78f4db11348dc7717b.tar.xz | |
refs: rename `each_ref_fn`
Similar to the preceding commit, rename `each_ref_fn` to better match
our current best practices around how we name things.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'upload-pack.c')
| -rw-r--r-- | upload-pack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upload-pack.c b/upload-pack.c index 2d2b70cbf2..7fe397b0d0 100644 --- a/upload-pack.c +++ b/upload-pack.c @@ -607,7 +607,7 @@ static int allow_hidden_refs(enum allow_uor allow_uor) return !(allow_uor & (ALLOW_TIP_SHA1 | ALLOW_REACHABLE_SHA1)); } -static void for_each_namespaced_ref_1(each_ref_fn fn, +static void for_each_namespaced_ref_1(refs_for_each_cb fn, struct upload_pack_data *data) { const char **excludes = NULL; |
