diff options
| -rw-r--r-- | ui-log.c | 4 | ||||
| -rw-r--r-- | ui-refs.c | 2 | ||||
| -rw-r--r-- | ui-shared.c | 8 | ||||
| -rw-r--r-- | ui-shared.h | 3 | 
4 files changed, 8 insertions, 9 deletions
| @@ -71,11 +71,11 @@ void show_commit_decorations(struct commit *commit)  		}  		else if (starts_with(deco->name, "tag: refs/tags/")) {  			strncpy(buf, deco->name + 15, sizeof(buf) - 1); -			cgit_tag_link(buf, NULL, "tag-deco", ctx.qry.head, buf); +			cgit_tag_link(buf, NULL, "tag-deco", buf);  		}  		else if (starts_with(deco->name, "refs/tags/")) {  			strncpy(buf, deco->name + 10, sizeof(buf) - 1); -			cgit_tag_link(buf, NULL, "tag-deco", ctx.qry.head, buf); +			cgit_tag_link(buf, NULL, "tag-deco", buf);  		}  		else if (starts_with(deco->name, "refs/remotes/")) {  			if (!ctx.repo->enable_remote_branches) @@ -140,7 +140,7 @@ static int print_tag(struct refinfo *ref)  	}  	html("<tr><td>"); -	cgit_tag_link(name, NULL, NULL, ctx.qry.head, name); +	cgit_tag_link(name, NULL, NULL, name);  	html("</td><td>");  	if (ctx.repo->snapshots && (obj->type == OBJ_COMMIT))  		print_tag_downloads(ctx.repo, name); diff --git a/ui-shared.c b/ui-shared.c index 32f23f9..d8cc4d7 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -273,9 +273,9 @@ void cgit_summary_link(const char *name, const char *title, const char *class,  }  void cgit_tag_link(const char *name, const char *title, const char *class, -		   const char *head, const char *rev) +		   const char *tag)  { -	reporevlink("tag", name, title, class, head, rev, NULL); +	reporevlink("tag", name, title, class, tag, NULL, NULL);  }  void cgit_tree_link(const char *name, const char *title, const char *class, @@ -443,8 +443,8 @@ static void cgit_self_link(char *name, const char *title, const char *class)  	else if (!strcmp(ctx.qry.page, "summary"))  		cgit_summary_link(name, title, class, ctx.qry.head);  	else if (!strcmp(ctx.qry.page, "tag")) -		cgit_tag_link(name, title, class, ctx.qry.head, -			      ctx.qry.has_sha1 ? ctx.qry.sha1 : NULL); +		cgit_tag_link(name, title, class, ctx.qry.has_sha1 ? +			       ctx.qry.sha1 : ctx.qry.head);  	else if (!strcmp(ctx.qry.page, "tree"))  		cgit_tree_link(name, title, class, ctx.qry.head,  			       ctx.qry.has_sha1 ? ctx.qry.sha1 : NULL, diff --git a/ui-shared.h b/ui-shared.h index f8cf220..021fe4e 100644 --- a/ui-shared.h +++ b/ui-shared.h @@ -18,8 +18,7 @@ extern void cgit_index_link(const char *name, const char *title,  extern void cgit_summary_link(const char *name, const char *title,  			      const char *class, const char *head);  extern void cgit_tag_link(const char *name, const char *title, -			  const char *class, const char *head, -			  const char *rev); +			  const char *class, const char *tag);  extern void cgit_tree_link(const char *name, const char *title,  			   const char *class, const char *head,  			   const char *rev, const char *path); | 
