|
diff --git a/cgit.c b/cgit.c index 9305d0a..37154e3 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -150,3 +150,3 @@ void config_cb(const char *name, const char *value) |
150 | else if (!strcmp(name, "cache-root")) |
150 | else if (!strcmp(name, "cache-root")) |
151 | ctx.cfg.cache_root = xstrdup(value); |
151 | ctx.cfg.cache_root = xstrdup(expand_macros(value)); |
152 | else if (!strcmp(name, "cache-root-ttl")) |
152 | else if (!strcmp(name, "cache-root-ttl")) |
@@ -179,5 +179,5 @@ void config_cb(const char *name, const char *value) |
179 | if (!ctx.cfg.nocache && ctx.cfg.cache_size) |
179 | if (!ctx.cfg.nocache && ctx.cfg.cache_size) |
180 | process_cached_repolist(value); |
180 | process_cached_repolist(expand_macros(value)); |
181 | else |
181 | else |
182 | scan_tree(value, repo_config); |
182 | scan_tree(expand_macros(value), repo_config); |
183 | else if (!strcmp(name, "source-filter")) |
183 | else if (!strcmp(name, "source-filter")) |
@@ -205,3 +205,3 @@ void config_cb(const char *name, const char *value) |
205 | else if (!strcmp(name, "include")) |
205 | else if (!strcmp(name, "include")) |
206 | parse_configfile(value, config_cb); |
206 | parse_configfile(expand_macros(value), config_cb); |
207 | } |
207 | } |
@@ -690,3 +690,3 @@ int main(int argc, const char **argv) |
690 | cgit_parse_args(argc, argv); |
690 | cgit_parse_args(argc, argv); |
691 | parse_configfile(ctx.env.cgit_config, config_cb); |
691 | parse_configfile(expand_macros(ctx.env.cgit_config), config_cb); |
692 | ctx.repo = NULL; |
692 | ctx.repo = NULL; |
|