diff options
author | Christian Hesse <mail@eworm.de> | 2020-10-20 23:46:09 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2020-10-20 23:57:12 +0200 |
commit | a4de0e810b69710c3b32f6d253d80d16dec09f36 (patch) | |
tree | bae0b334de05e134d06b48aeb888a3bf134a705a /ui-patch.c | |
parent | 779631c6dc23c15bbbf45a7c7ab9fffb619037b7 (diff) | |
download | cgit-a4de0e810b69710c3b32f6d253d80d16dec09f36.tar.gz cgit-a4de0e810b69710c3b32f6d253d80d16dec09f36.tar.xz |
global: replace hard coded hash length
With sha1 we had a guaranteed length of 40 hex chars. This changes now
that we have to support sha256 with 64 hex chars... Support both.
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'ui-patch.c')
-rw-r--r-- | ui-patch.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -61,7 +61,7 @@ void cgit_print_patch(const char *new_rev, const char *old_rev, } if (is_null_oid(&old_rev_oid)) { - memcpy(rev_range, oid_to_hex(&new_rev_oid), GIT_SHA1_HEXSZ + 1); + memcpy(rev_range, oid_to_hex(&new_rev_oid), the_hash_algo->hexsz + 1); } else { xsnprintf(rev_range, REV_RANGE_LEN, "%s..%s", oid_to_hex(&old_rev_oid), oid_to_hex(&new_rev_oid)); |