all repos — cgit @ 61245ad18545ab09b22e9fcce5e49d5d36bf8176

a hyperfast web frontend for git written in c

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>
Lars Hjemli hjemli@gmail.com
Sat, 16 Dec 2006 13:43:01 +0100
commit

61245ad18545ab09b22e9fcce5e49d5d36bf8176

parent

521dc7a4bf4af6115ffc3a94d447689bbaa22272

1 files changed, 2 insertions(+), 0 deletions(-)

jump to
M shared.cshared.c

@@ -57,6 +57,8 @@ else if (!strcmp(name, "virtual-root"))

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)