aboutsummaryrefslogtreecommitdiff
path: root/midx-write.c
diff options
context:
space:
mode:
authorTaylor Blau <me@ttaylorr.com>2026-02-24 13:59:39 -0500
committerJunio C Hamano <gitster@pobox.com>2026-02-24 11:16:32 -0800
commitde811c26bb97ac324b60883ae4f4db84a83be2f1 (patch)
tree4961743a6fa3f05969e5ae43fd21699b6b138b87 /midx-write.c
parent00c0d84e6f0cdb91b0f261e12ed058ad3baa49bf (diff)
downloadgit-de811c26bb97ac324b60883ae4f4db84a83be2f1.tar.xz
midx: rename `get_midx_checksum()` to `midx_get_checksum_hash()`
Since 541204aabea (Documentation: document naming schema for structs and their functions, 2024-07-30), we have adopted a naming convention for functions that would prefer a name like, say, `midx_get_checksum()` over `get_midx_checksum()`. Adopt this convention throughout the midx.h API. Since this function returns a raw (that is, non-hex encoded) hash, let's suffix the function with "_hash()" to make this clear. As a side effect, this prepares us for the subsequent change which will introduce a "_hex()" variant that encodes the checksum itself. Suggested-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Taylor Blau <me@ttaylorr.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'midx-write.c')
-rw-r--r--midx-write.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/midx-write.c b/midx-write.c
index 6485cb6706..73d33752ef 100644
--- a/midx-write.c
+++ b/midx-write.c
@@ -946,7 +946,7 @@ static int link_midx_to_chain(struct multi_pack_index *m)
}
for (i = 0; i < ARRAY_SIZE(midx_exts); i++) {
- const unsigned char *hash = get_midx_checksum(m);
+ const unsigned char *hash = midx_get_checksum_hash(m);
get_midx_filename_ext(m->source, &from,
hash, midx_exts[i].non_split);
@@ -1151,7 +1151,7 @@ static int write_midx_internal(struct odb_source *source,
while (m) {
if (flags & MIDX_WRITE_BITMAP && load_midx_revindex(m)) {
error(_("could not load reverse index for MIDX %s"),
- hash_to_hex_algop(get_midx_checksum(m),
+ hash_to_hex_algop(midx_get_checksum_hash(m),
m->source->odb->repo->hash_algo));
goto cleanup;
}
@@ -1520,7 +1520,7 @@ static int write_midx_internal(struct odb_source *source,
for (uint32_t i = 0; i < ctx.num_multi_pack_indexes_before; i++) {
uint32_t j = ctx.num_multi_pack_indexes_before - i - 1;
- keep_hashes[j] = xstrdup(hash_to_hex_algop(get_midx_checksum(m),
+ keep_hashes[j] = xstrdup(hash_to_hex_algop(midx_get_checksum_hash(m),
r->hash_algo));
m = m->base_midx;
}