X-Git-Url: https://git.cameronkatri.com/cgit.git/blobdiff_plain/493061102653ac6483dc3c9649c726318e2488b6..3cb8e762780cb4bd8dc9d330d549e36d65ad4335:/ui-refs.c
diff --git a/ui-refs.c b/ui-refs.c
index 0da063f..ac8a6d4 100644
--- a/ui-refs.c
+++ b/ui-refs.c
@@ -67,7 +67,7 @@ static int print_branch(struct refinfo *ref)
html("
");
if (ref->object->type == OBJ_COMMIT) {
- cgit_commit_link(info->subject, NULL, NULL, name, NULL, NULL, 0);
+ cgit_commit_link(info->subject, NULL, NULL, name, NULL, NULL);
html(" | ");
cgit_open_filter(ctx.repo->email_filter, info->author_email, "refs");
html_txt(info->author);
@@ -101,7 +101,7 @@ static void print_tag_downloads(const struct cgit_repo *repo, const char *ref)
return;
basename = cgit_repobasename(repo->url);
- if (prefixcmp(ref, basename) != 0) {
+ if (!starts_with(ref, basename)) {
if ((ref[0] == 'v' || ref[0] == 'V') && isdigit(ref[1]))
ref++;
if (isdigit(ref[0])) {
@@ -140,7 +140,7 @@ static int print_tag(struct refinfo *ref)
}
html(" | ");
- cgit_tag_link(name, NULL, NULL, ctx.qry.head, name);
+ cgit_tag_link(name, NULL, NULL, name);
html(" | ");
if (ctx.repo->snapshots && (obj->type == OBJ_COMMIT))
print_tag_downloads(ctx.repo, name);
@@ -239,9 +239,9 @@ void cgit_print_refs()
html("");
- if (ctx.qry.path && !prefixcmp(ctx.qry.path, "heads"))
+ if (ctx.qry.path && starts_with(ctx.qry.path, "heads"))
cgit_print_branches(0);
- else if (ctx.qry.path && !prefixcmp(ctx.qry.path, "tags"))
+ else if (ctx.qry.path && starts_with(ctx.qry.path, "tags"))
cgit_print_tags(0);
else {
cgit_print_branches(0);
|