]> git.cameronkatri.com Git - cgit.git/commitdiff
Add cache-root option to /cgit/rc
authorLars Hjemli <hjemli@gmail.com>
Sat, 16 Dec 2006 12:43:01 +0000 (13:43 +0100)
committerLars Hjemli <hjemli@gmail.com>
Sat, 16 Dec 2006 12:43:01 +0000 (13:43 +0100)
Somehow, this option was forgotten when parsing the configfile.

Add it.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
shared.c

index 714959758e676970ece65122d7ff7786a601c50e..4574120cafa5c6900741dc0fbe83325d3f89eb72 100644 (file)
--- a/shared.c
+++ b/shared.c
@@ -57,6 +57,8 @@ void cgit_global_config_cb(const char *name, const char *value)
                cgit_virtual_root = xstrdup(value);
        else if (!strcmp(name, "nocache"))
                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)