summaryrefslogtreecommitdiff
path: root/servconf.c
diff options
context:
space:
mode:
authorSebastian Andrzej Siewior <sebastian@breakpoint.cc>2020-09-05 17:50:01 +0200
committerDarren Tucker <dtucker@dtucker.net>2020-09-11 13:18:42 +1000
commit8372bff3a895b84fd78a81dc39da10928b662f5a (patch)
tree3a4aa556c608eefa61f7b595a680bbbdfed9d57a /servconf.c
parentbbf20ac8065905f9cb9aeb8f1df57fcab52ee2fb (diff)
downloadopenssh-git-8372bff3a895b84fd78a81dc39da10928b662f5a.tar.gz
Remove HAVE_MMAP and BROKEN_MMAP
BROKEN_MMAP is no longer defined since commit 1cfd5c06efb12 ("Remove portability support for mmap") this commit also removed other HAVE_MMAP user. I didn't find anything that defines HAVE_MMAP. The check does not trigger because compression on server side is by default COMP_DELAYED (2) so it never triggers. Remove remaining HAVE_MMAP and BROKEN_MMAP bits. Signed-off-by: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
Diffstat (limited to 'servconf.c')
-rw-r--r--servconf.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/servconf.c b/servconf.c
index 2ce04cf1..f08e3747 100644
--- a/servconf.c
+++ b/servconf.c
@@ -495,15 +495,6 @@ fill_default_server_options(ServerOptions *options)
options->auth_methods[0] = NULL;
options->num_auth_methods = 0;
}
-
-#ifndef HAVE_MMAP
- if (use_privsep && options->compression == 1) {
- error("This platform does not support both privilege "
- "separation and compression");
- error("Compression disabled");
- options->compression = 0;
- }
-#endif
}
/* Keyword tokens. */