about summary refs log tree commit diff
path: root/third_party/cgit/parsing.c
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2020-11-21T18·59+0100
committerVincent Ambo <mail@tazj.in>2020-11-21T19·09+0100
commit1e81ce6622ef790b297ff48f1d0286f51e225aee (patch)
tree152c022824a5cd4970bb41daa1fe94937b87a0e9 /third_party/cgit/parsing.c
parentf4609b896fac842433bd495c166d5987852a6a73 (diff)
merge(3p/cgit): subtree merge at adcc4f82 r/1891
Change-Id: I16941629a17a2f39b9324cb85dc0cec6b104dfe4
Diffstat (limited to 'third_party/cgit/parsing.c')
-rw-r--r--third_party/cgit/parsing.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/third_party/cgit/parsing.c b/third_party/cgit/parsing.c
index b4b5f904dc..e093aaf701 100644
--- a/third_party/cgit/parsing.c
+++ b/third_party/cgit/parsing.c
@@ -127,9 +127,8 @@ static int end_of_header(const char *p)
 
 struct commitinfo *cgit_parse_commit(struct commit *commit)
 {
-	const int sha1hex_len = 40;
 	struct commitinfo *ret;
-	const char *p = get_cached_commit_buffer(the_repository, commit, NULL);
+	const char *p = repo_get_commit_buffer(the_repository, commit, NULL);
 	const char *t;
 
 	ret = xcalloc(1, sizeof(struct commitinfo));
@@ -140,10 +139,10 @@ struct commitinfo *cgit_parse_commit(struct commit *commit)
 
 	if (!skip_prefix(p, "tree ", &p))
 		die("Bad commit: %s", oid_to_hex(&commit->object.oid));
-	p += sha1hex_len + 1;
+	p += the_hash_algo->hexsz + 1;
 
 	while (skip_prefix(p, "parent ", &p))
-		p += sha1hex_len + 1;
+		p += the_hash_algo->hexsz + 1;
 
 	if (p && skip_prefix(p, "author ", &p)) {
 		parse_user(p, &ret->author, &ret->author_email,