-rw-r--r-- | cgit.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -170,3 +170,3 @@ void config_cb(const char *name, const char *value) else - scan_tree(value); + scan_tree(value, repo_config); else if (!strcmp(name, "source-filter")) @@ -478,3 +478,3 @@ static int generate_cached_repolist(const char *path, const char *cached_rc) idx = cgit_repolist.count; - scan_tree(path); + scan_tree(path, repo_config); print_repolist(f, &cgit_repolist, idx); @@ -502,3 +502,3 @@ static void process_cached_repolist(const char *path) if (generate_cached_repolist(path, cached_rc)) - scan_tree(path); + scan_tree(path, repo_config); return; @@ -561,3 +561,3 @@ static void cgit_parse_args(int argc, const char **argv) scan++; - scan_tree(argv[i] + 12); + scan_tree(argv[i] + 12, repo_config); } |