about summary refs log tree commit diff stats
path: root/ui-shared.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui-shared.c')
-rw-r--r--ui-shared.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ui-shared.c b/ui-shared.c index 0c6ca60..e719c1b 100644 --- a/ui-shared.c +++ b/ui-shared.c
@@ -1103,17 +1103,17 @@ void cgit_compose_snapshot_prefix(struct strbuf *filename, const char *base,
1103 strbuf_addf(filename, "%s-%s", base, ref); 1103 strbuf_addf(filename, "%s-%s", base, ref);
1104} 1104}
1105 1105
1106void cgit_print_snapshot_links(const char *repo, const char *head, 1106void cgit_print_snapshot_links(const struct cgit_repo *repo, const char *head,
1107 const char *hex, int snapshots) 1107 const char *hex)
1108{ 1108{
1109 const struct cgit_snapshot_format* f; 1109 const struct cgit_snapshot_format* f;
1110 struct strbuf filename = STRBUF_INIT; 1110 struct strbuf filename = STRBUF_INIT;
1111 size_t prefixlen; 1111 size_t prefixlen;
1112 1112
1113 cgit_compose_snapshot_prefix(&filename, cgit_repobasename(repo), hex); 1113 cgit_compose_snapshot_prefix(&filename, cgit_repobasename(repo->url), hex);
1114 prefixlen = filename.len; 1114 prefixlen = filename.len;
1115 for (f = cgit_snapshot_formats; f->suffix; f++) { 1115 for (f = cgit_snapshot_formats; f->suffix; f++) {
1116 if (!(snapshots & f->bit)) 1116 if (!(repo->snapshots & f->bit))
1117 continue; 1117 continue;
1118 strbuf_setlen(&filename, prefixlen); 1118 strbuf_setlen(&filename, prefixlen);
1119 strbuf_addstr(&filename, f->suffix); 1119 strbuf_addstr(&filename, f->suffix);