about summary refs log tree commit diff
path: root/ui-patch.c
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2020-10-20 23:46:09 +0200
committerChristian Hesse <mail@eworm.de>2020-10-20 23:57:12 +0200
commita4de0e810b69710c3b32f6d253d80d16dec09f36 (patch)
treebae0b334de05e134d06b48aeb888a3bf134a705a /ui-patch.c
parentglobal: replace references to 'sha1' with 'oid' (diff)
downloadcgit-pink-a4de0e810b69710c3b32f6d253d80d16dec09f36.tar.gz
cgit-pink-a4de0e810b69710c3b32f6d253d80d16dec09f36.zip
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-patch.c b/ui-patch.c
index 5a96410..4ac03cb 100644
--- a/ui-patch.c
+++ b/ui-patch.c
@@ -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));