about summary refs log tree commit diff
path: root/cgit.c
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2018-07-16 16:27:39 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2022-12-19 16:22:26 +0100
commit91f25909b9572ebdf3a0fed8224bf03d0d9bf3db (patch)
tree2ad6fe7cd7d589ac6ca01a7a463ec0433b18bf86 /cgit.c
parentcache: tolerate short writes in print_slot (diff)
downloadcgit-magenta-91f25909b9572ebdf3a0fed8224bf03d0d9bf3db.tar.xz
cgitrc: handle value "0" for max-repo-count
Setting max-repo-count to "0" makes cgit loop forever generating page
links. Make this a special value to show all repositories.

Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'cgit.c')
-rw-r--r--cgit.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/cgit.c b/cgit.c

index 2de6d7f..133f454 100644 --- a/cgit.c +++ b/cgit.c
@@ -237,9 +237,11 @@ static void config_cb(const char *name, const char *value) ctx.cfg.max_repodesc_len = atoi(value); else if (!strcmp(name, "max-blob-size")) ctx.cfg.max_blob_size = atoi(value); - else if (!strcmp(name, "max-repo-count")) + else if (!strcmp(name, "max-repo-count")) { ctx.cfg.max_repo_count = atoi(value); - else if (!strcmp(name, "max-commit-count")) + if (ctx.cfg.max_repo_count <= 0) + ctx.cfg.max_repo_count = INT_MAX; + } else if (!strcmp(name, "max-commit-count")) ctx.cfg.max_commit_count = atoi(value); else if (!strcmp(name, "project-list")) ctx.cfg.project_list = xstrdup(expand_macros(value));