]> git.ipfire.org Git - thirdparty/git.git/commit
builtin/fetch-pack: remove constants with parse_oid_hex
authorbrian m. carlson <sandals@crustytoothpaste.net>
Mon, 15 Oct 2018 00:01:52 +0000 (00:01 +0000)
committerJunio C Hamano <gitster@pobox.com>
Mon, 15 Oct 2018 03:53:15 +0000 (12:53 +0900)
commit7b5e614e2acc2f4e6b2f1ea4eb93dd430d350abd
tree1240376b1f90c1d3e51956eeb24ab0ef6e5fa3dd
parent58ce21b819e582db2a96d170fdd24d3f7bc6c4d0
builtin/fetch-pack: remove constants with parse_oid_hex

Instead of using GIT_SHA1_HEXSZ, use parse_oid_hex to compute a pointer
and use that in comparisons.  This is both simpler to read and works
independent of the hash length.  Update references to SHA-1 in the same
function to refer to object IDs instead.

Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/fetch-pack.c