diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2018-07-16 03:27:56 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-07-16 23:27:39 +0200 |
commit | 2770ccbdb23d6a02e60d5df3f70e476b8ea65262 (patch) | |
tree | bb7c716f7ecd2e1a09461cd4810afb0fd41b7032 /commit.c | |
parent | hex: switch to using the_hash_algo (diff) | |
download | git-2770ccbdb23d6a02e60d5df3f70e476b8ea65262.tar.xz git-2770ccbdb23d6a02e60d5df3f70e476b8ea65262.zip |
commit: express tree entry constants in terms of the_hash_algo
Specify these constants in terms of the size of the hash algorithm
currently in use.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r-- | commit.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -364,8 +364,8 @@ int parse_commit_buffer(struct commit *item, const void *buffer, unsigned long s struct object_id parent; struct commit_list **pptr; struct commit_graft *graft; - const int tree_entry_len = GIT_SHA1_HEXSZ + 5; - const int parent_entry_len = GIT_SHA1_HEXSZ + 7; + const int tree_entry_len = the_hash_algo->hexsz + 5; + const int parent_entry_len = the_hash_algo->hexsz + 7; if (item->object.parsed) return 0; |