Add cache-root option to /cgit/rc
Somehow, this option was forgotten when parsing the configfile. Add it. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
521dc7a4bf
commit
61245ad185
2
shared.c
2
shared.c
@ -57,6 +57,8 @@ void cgit_global_config_cb(const char *name, const char *value)
|
|||||||
cgit_virtual_root = xstrdup(value);
|
cgit_virtual_root = xstrdup(value);
|
||||||
else if (!strcmp(name, "nocache"))
|
else if (!strcmp(name, "nocache"))
|
||||||
cgit_nocache = atoi(value);
|
cgit_nocache = atoi(value);
|
||||||
|
else if (!strcmp(name, "cache-root"))
|
||||||
|
cgit_cache_root = xstrdup(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cgit_repo_config_cb(const char *name, const char *value)
|
void cgit_repo_config_cb(const char *name, const char *value)
|
||||||
|
Loading…
Reference in New Issue
Block a user