diff options
author | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2018-07-17 12:38:22 -0400 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-07-17 19:11:49 +0200 |
commit | 5897d950ec1fa084091b06b11a7dca96dc3253a4 (patch) | |
tree | 33d3c3ee48cdaf5aaa3b8a4883e90e63332c695e /cgit.c | |
parent | 82856923bffaac3ac88a90a797ddb33dcee8635a (diff) |
config: record repo.snapshot-prefix in the per-repo config
Even if we find snapshot-prefix in the repo configuration, we are not
writing it out into the rc- file, so setting the value does not have any
effect.
Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
Diffstat (limited to 'cgit.c')
-rw-r--r-- | cgit.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -830,6 +830,8 @@ static void print_repo(FILE *f, struct cgit_repo *repo) fprintf(f, "repo.snapshots=%s\n", tmp ? tmp : ""); free(tmp); } + if (repo->snapshot_prefix) + fprintf(f, "repo.snapshot-prefix=%s\n", repo->snapshot_prefix); if (repo->max_stats != ctx.cfg.max_stats) fprintf(f, "repo.max-stats=%s\n", cgit_find_stats_periodname(repo->max_stats)); |