]> git.ipfire.org Git - thirdparty/git.git/commit - midx.c
midx: keep track of the checksum
authorTaylor Blau <me@ttaylorr.com>
Tue, 30 Mar 2021 15:04:17 +0000 (11:04 -0400)
committerJunio C Hamano <gitster@pobox.com>
Thu, 1 Apr 2021 20:07:37 +0000 (13:07 -0700)
commit9f19161172412086f50b660a07731d636458cdc8
treef39b2f046b4a56d4bd5dff751b814fb6f78bde97
parent7240cc4b65b6684c403487889cce396e45ad30cd
midx: keep track of the checksum

write_midx_internal() uses a hashfile to write the multi-pack index, but
discards its checksum. This makes sense, since nothing that takes place
after writing the MIDX cares about its checksum.

That is about to change in a subsequent patch, when the optional
reverse index corresponding to the MIDX will want to include the MIDX's
checksum.

Store the checksum of the MIDX in preparation for that.

Signed-off-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
midx.c