diff options
author | mouring <mouring> | 2002-06-06 19:47:11 +0000 |
---|---|---|
committer | mouring <mouring> | 2002-06-06 19:47:11 +0000 |
commit | a37d8f8ed0fac21b5f2968936a327dce97010578 (patch) | |
tree | c74201b2ee87e427cf83ca87dc1238cf39f6224d /servconf.c | |
parent | 7b4e28f23bbc98ba7f287b0bc9beb93b4006ec39 (diff) | |
download | openssh-a37d8f8ed0fac21b5f2968936a327dce97010578.tar.gz |
- markus@cvs.openbsd.org 2002/05/15 21:56:38
[servconf.c sshd.8 sshd_config]
re-enable privsep and disable setuid for post-3.2.2
Diffstat (limited to 'servconf.c')
-rw-r--r-- | servconf.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -10,7 +10,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: servconf.c,v 1.109 2002/05/15 21:02:52 markus Exp $"); +RCSID("$OpenBSD: servconf.c,v 1.110 2002/05/15 21:56:38 markus Exp $"); #if defined(KRB4) #include <krb.h> @@ -250,9 +250,9 @@ fill_default_server_options(ServerOptions *options) if (options->authorized_keys_file == NULL) options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS; - /* Turn privilege separation _off_ by default */ + /* Turn privilege separation on by default */ if (use_privsep == -1) - use_privsep = 0; + use_privsep = 1; } /* Keyword tokens. */ |