From 10628b0e52f860f8c95c476f61a98a31b79ce776 Mon Sep 17 00:00:00 2001 From: John Keeping Date: Sat, 2 Mar 2013 12:32:14 +0000 Subject: Update git to v1.7.9.7 resolve_ref() is renamed to resolve_ref_unsafe(). CGit's usage is safe. Signed-off-by: John Keeping --- cgit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cgit.c') diff --git a/cgit.c b/cgit.c index 11edd81..d615315 100644 --- a/cgit.c +++ b/cgit.c @@ -450,7 +450,7 @@ static char *guess_defbranch(const char *repo_path) const char *ref; unsigned char sha1[20]; - ref = resolve_ref("HEAD", sha1, 0, NULL); + ref = resolve_ref_unsafe("HEAD", sha1, 0, NULL); if (!ref || prefixcmp(ref, "refs/heads/")) return "master"; return xstrdup(ref + 11); -- cgit v1.2.3-24-g4f1b