]> git.ipfire.org Git - thirdparty/git.git/commit
packfile: drop sha1_pack_name()
authorJeff King <peff@peff.net>
Fri, 25 Oct 2024 07:00:55 +0000 (03:00 -0400)
committerTaylor Blau <me@ttaylorr.com>
Fri, 25 Oct 2024 21:35:46 +0000 (17:35 -0400)
commitc2dc4c9fbb1f119be6ab55ff8676bf18b4b9446a
treeb32a953088493f598aea4023c1cb682b11e1b1d8
parent03b8eed7f50a56cd7581e18775c6f3a7caf639b4
packfile: drop sha1_pack_name()

The sha1_pack_name() function has a few ugly bits:

  - it writes into a static strbuf (and not even a ring buffer of them),
    which can lead to subtle invalidation problems

  - it uses the term "sha1", but it's really using the_hash_algo, which
    could be sha256

There's only one caller of it left. And in fact that caller is better
off using the underlying odb_pack_name() function itself, since it's
just copying the result into its own strbuf anyway.

Converting that caller lets us get rid of this now-obselete function.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Taylor Blau <me@ttaylorr.com>
http.c
packfile.c
packfile.h