summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJan Kneschke <jan@kneschke.de>2005-11-11 12:44:34 +0000
committerJan Kneschke <jan@kneschke.de>2005-11-11 12:44:34 +0000
commit154210fa29d733fceb8afb3c970973e3a72f30af (patch)
tree9b841ecf1026bb9e0bd4cbd7c418e77ce84832eb /src
parentbd62c9606a0801849a861757751d8cd1fd1eb696 (diff)
downloadlighttpd-git-154210fa29d733fceb8afb3c970973e3a72f30af.tar.gz
use the SIMPLE stat-cache-engine as default
git-svn-id: svn+ssh://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@837 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'src')
-rw-r--r--src/configfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configfile.c b/src/configfile.c
index a1af5a5f..e9080c30 100644
--- a/src/configfile.c
+++ b/src/configfile.c
@@ -194,7 +194,7 @@ static int config_insert(server *srv) {
}
if (buffer_is_empty(stat_cache_string)) {
- srv->srvconf.stat_cache_engine = STAT_CACHE_ENGINE_NONE;
+ srv->srvconf.stat_cache_engine = STAT_CACHE_ENGINE_SIMPLE;
} else if (buffer_is_equal_string(stat_cache_string, CONST_STR_LEN("simple"))) {
srv->srvconf.stat_cache_engine = STAT_CACHE_ENGINE_SIMPLE;
} else if (buffer_is_equal_string(stat_cache_string, CONST_STR_LEN("fam"))) {