summaryrefslogtreecommitdiff
path: root/servconf.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-06-25 03:22:03 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-06-25 03:22:03 +0000
commit6b0c96ab590be0af4b04421666a3b465737c16cb (patch)
tree93f177c78c89a5b23b6d7b146014cabe1b3f2a24 /servconf.c
parentaa83b984ca60f59aff8eb32da7dfe210c8a55d82 (diff)
- (bal) if mmap() is substandard, don't allow compression on server side.
Post 'event' we will add more options.
Diffstat (limited to 'servconf.c')
-rw-r--r--servconf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/servconf.c b/servconf.c
index 0d77c7078..f311ae48d 100644
--- a/servconf.c
+++ b/servconf.c
@@ -257,7 +257,7 @@ fill_default_server_options(ServerOptions *options)
257 if (use_privsep == -1) 257 if (use_privsep == -1)
258 use_privsep = 1; 258 use_privsep = 1;
259 259
260#if !defined(HAVE_MMAP) || !defined(MAP_ANON) 260#if !defined(HAVE_MMAP_ANON_SHARED)
261 if (use_privsep && options->compression == 1) { 261 if (use_privsep && options->compression == 1) {
262 error("This platform does not support both privilege " 262 error("This platform does not support both privilege "
263 "separation and compression"); 263 "separation and compression");