Unidiff1 files changed, 4 insertions, 4 deletions
|
diff --git a/cgit.c b/cgit.c index 90ae124..e281aa9 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -170,3 +170,3 @@ void config_cb(const char *name, const char *value) |
170 | else |
170 | else |
171 | scan_tree(value); |
171 | scan_tree(value, repo_config); |
172 | else if (!strcmp(name, "source-filter")) |
172 | else if (!strcmp(name, "source-filter")) |
@@ -478,3 +478,3 @@ static int generate_cached_repolist(const char *path, const char *cached_rc) |
478 | idx = cgit_repolist.count; |
478 | idx = cgit_repolist.count; |
479 | scan_tree(path); |
479 | scan_tree(path, repo_config); |
480 | print_repolist(f, &cgit_repolist, idx); |
480 | print_repolist(f, &cgit_repolist, idx); |
@@ -502,3 +502,3 @@ static void process_cached_repolist(const char *path) |
502 | if (generate_cached_repolist(path, cached_rc)) |
502 | if (generate_cached_repolist(path, cached_rc)) |
503 | scan_tree(path); |
503 | scan_tree(path, repo_config); |
504 | return; |
504 | return; |
@@ -561,3 +561,3 @@ static void cgit_parse_args(int argc, const char **argv) |
561 | scan++; |
561 | scan++; |
562 | scan_tree(argv[i] + 12); |
562 | scan_tree(argv[i] + 12, repo_config); |
563 | } |
563 | } |
|