aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonstantin Ryabitsev <konstantin@linuxfoundation.org>2018-07-17 18:38:22 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2018-08-03 16:12:21 +0200
commitc679d9010451b986bae719a6abe0458af2b2dfb9 (patch)
treeec984ae75e1408c5f9a436b33b5cbfcec27f6851
parent77b6f833441dda1dd50f5a51a81036b1fde815d5 (diff)
downloadcgit-c679d9010451b986bae719a6abe0458af2b2dfb9.tar.gz
cgit-c679d9010451b986bae719a6abe0458af2b2dfb9.tar.xz
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>
-rw-r--r--cgit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/cgit.c b/cgit.c
index fda0aa4..6301b87 100644
--- a/cgit.c
+++ b/cgit.c
@@ -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));