From: Junio C Hamano Date: Wed, 13 Sep 2023 17:07:56 +0000 (-0700) Subject: Merge branch 'ew/hash-with-openssl-evp' X-Git-Tag: v2.43.0-rc0~100 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=331f20d52df2fd5eb4bea4a9e14a368472f32819;p=thirdparty%2Fgit.git Merge branch 'ew/hash-with-openssl-evp' Fix-up new-ish code to support OpenSSL EVP API. * ew/hash-with-openssl-evp: treewide: fix various bugs w/ OpenSSL 3+ EVP API --- 331f20d52df2fd5eb4bea4a9e14a368472f32819 diff --cc builtin/unpack-objects.c index 32505255a0,b16d38af13..fef7423448 --- a/builtin/unpack-objects.c +++ b/builtin/unpack-objects.c @@@ -609,8 -608,9 +609,9 @@@ int cmd_unpack_objects(int argc, const { int i; struct object_id oid; + git_hash_ctx tmp_ctx; - read_replace_refs = 0; + disable_replace_refs(); git_config(git_default_config, NULL);