connected: switch GIT_SHA1_HEXSZ to the_hash_algo

Switch various uses of GIT_SHA1_HEXSZ to reference the_hash_algo
instead.

Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
brian m. carlson 2019-08-18 20:04:10 +00:00 committed by Junio C Hamano
parent 7962e046ff
commit 9d958cc041
1 changed files with 4 additions and 3 deletions

View File

@ -28,6 +28,7 @@ int check_connected(oid_iterate_fn fn, void *cb_data,
struct packed_git *new_pack = NULL; struct packed_git *new_pack = NULL;
struct transport *transport; struct transport *transport;
size_t base_len; size_t base_len;
const unsigned hexsz = the_hash_algo->hexsz;


if (!opt) if (!opt)
opt = &defaults; opt = &defaults;
@ -99,7 +100,7 @@ int check_connected(oid_iterate_fn fn, void *cb_data,


sigchain_push(SIGPIPE, SIG_IGN); sigchain_push(SIGPIPE, SIG_IGN);


commit[GIT_SHA1_HEXSZ] = '\n'; commit[hexsz] = '\n';
do { do {
/* /*
* If index-pack already checked that: * If index-pack already checked that:
@ -112,8 +113,8 @@ int check_connected(oid_iterate_fn fn, void *cb_data,
if (new_pack && find_pack_entry_one(oid.hash, new_pack)) if (new_pack && find_pack_entry_one(oid.hash, new_pack))
continue; continue;


memcpy(commit, oid_to_hex(&oid), GIT_SHA1_HEXSZ); memcpy(commit, oid_to_hex(&oid), hexsz);
if (write_in_full(rev_list.in, commit, GIT_SHA1_HEXSZ + 1) < 0) { if (write_in_full(rev_list.in, commit, hexsz + 1) < 0) {
if (errno != EPIPE && errno != EINVAL) if (errno != EPIPE && errno != EINVAL)
error_errno(_("failed write to rev-list")); error_errno(_("failed write to rev-list"));
err = -1; err = -1;