about summary refs log tree commit diff stats
path: root/ui-atom.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui-atom.c')
-rw-r--r--ui-atom.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui-atom.c b/ui-atom.c index e2b39ee..d7138fb 100644 --- a/ui-atom.c +++ b/ui-atom.c
@@ -125,11 +125,13 @@ void cgit_print_atom(char *tip, char *path, int max_count)
125 html_txt(ctx.repo->desc); 125 html_txt(ctx.repo->desc);
126 html("</subtitle>\n"); 126 html("</subtitle>\n");
127 if (host) { 127 if (host) {
128 char *repourl = cgit_repourl(ctx.repo->url);
128 html("<link rel='alternate' type='text/html' href='"); 129 html("<link rel='alternate' type='text/html' href='");
129 html(cgit_httpscheme()); 130 html(cgit_httpscheme());
130 html_attr(host); 131 html_attr(host);
131 html_attr(cgit_repourl(ctx.repo->url)); 132 html_attr(repourl);
132 html("'/>\n"); 133 html("'/>\n");
134 free(repourl);
133 } 135 }
134 while ((commit = get_revision(&rev)) != NULL) { 136 while ((commit = get_revision(&rev)) != NULL) {
135 add_entry(commit, host); 137 add_entry(commit, host);