mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
Use legacy hash for legacy formats
We have a large variety of data formats and protocols where no hash algorithm was defined and the default was assumed to always be SHA-1. Instead of explicitly stating SHA-1, let's use the constant to represent the legacy hash algorithm (which is still SHA-1) so that it's clear for documentary purposes that it's a legacy fallback option and not an intentional choice to use SHA-1. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
dc9c16c2fc
commit
667d251a04
@@ -285,7 +285,7 @@ static const struct git_hash_algo *detect_hash_algo(struct discovery *heads)
|
||||
* back to SHA1, which may or may not be correct.
|
||||
*/
|
||||
if (!p)
|
||||
return &hash_algos[GIT_HASH_SHA1];
|
||||
return &hash_algos[GIT_HASH_SHA1_LEGACY];
|
||||
|
||||
algo = hash_algo_by_length((p - heads->buf) / 2);
|
||||
if (algo == GIT_HASH_UNKNOWN)
|
||||
|
||||
Reference in New Issue
Block a user