From b2ac89127af9dde5c3addbd3e00eedd9f498cfab Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Sat, 25 Jun 2016 20:23:51 +0100 Subject: Add a wrapper for get_sha1 called cgit_get_sha1 This will later be changed to include namespace resolution, but the call sites are changed now to keep the changes small. Signed-off-by: Richard Maw --- ui-log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui-log.c') diff --git a/ui-log.c b/ui-log.c index c97b8e0..28ef3c0 100644 --- a/ui-log.c +++ b/ui-log.c @@ -325,7 +325,7 @@ static const char *disambiguate_ref(const char *ref, int *must_free_result) struct strbuf longref = STRBUF_INIT; strbuf_addf(&longref, "refs/heads/%s", ref); - if (get_sha1(longref.buf, oid.hash) == 0) { + if (cgit_get_sha1(longref.buf, oid.hash) == 0) { *must_free_result = 1; return strbuf_detach(&longref, NULL); } -- cgit v1.2.3-18-g5258