aboutsummaryrefslogtreecommitdiffstats
path: root/ui-log.c
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2009-08-16 19:52:27 +0200
committerLars Hjemli <hjemli@gmail.com>2009-08-16 20:53:20 +0200
commit0730ee6ea4af45e29e7c74d4a32bde9d2d6c8104 (patch)
tree539784d3a0a8c836f8c59a71fd1c9463116a09d2 /ui-log.c
parentui-refs.c: improve handling of lightweight tags (diff)
downloadcgit-0730ee6ea4af45e29e7c74d4a32bde9d2d6c8104.tar.xz
cgit-0730ee6ea4af45e29e7c74d4a32bde9d2d6c8104.zip
ui-log.c: handle lightweight tags when printing commit decorations
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-log.c')
-rw-r--r--ui-log.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ui-log.c b/ui-log.c
index ba2ab03..0b37785 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -53,6 +53,10 @@ void show_commit_decorations(struct commit *commit)
strncpy(buf, deco->name + 15, sizeof(buf) - 1);
cgit_tag_link(buf, NULL, "tag-deco", ctx.qry.head, buf);
}
+ else if (!prefixcmp(deco->name, "refs/tags/")) {
+ strncpy(buf, deco->name + 10, sizeof(buf) - 1);
+ cgit_tag_link(buf, NULL, "tag-deco", ctx.qry.head, buf);
+ }
else if (!prefixcmp(deco->name, "refs/remotes/")) {
strncpy(buf, deco->name + 13, sizeof(buf) - 1);
cgit_log_link(buf, NULL, "remote-deco", NULL,