diff options
author | mouring <mouring> | 2002-05-15 21:37:34 +0000 |
---|---|---|
committer | mouring <mouring> | 2002-05-15 21:37:34 +0000 |
commit | 608d156e7cc151cd19e2a5b7b2d29821d6d1e2da (patch) | |
tree | 91343cfe5e028411d25567652db381826d0f9eec /servconf.c | |
parent | 9ccfe0a13350d1dcd00b94db36f484d47c90f60f (diff) | |
download | openssh-608d156e7cc151cd19e2a5b7b2d29821d6d1e2da.tar.gz |
- markus@cvs.openbsd.org 2002/05/15 21:02:53
[servconf.c sshd.8 sshd_config]
disable privsep and enable setuid for the 3.2.2 release
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.108 2002/05/04 02:39:35 deraadt Exp $"); +RCSID("$OpenBSD: servconf.c,v 1.109 2002/05/15 21:02:52 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 on by default */ + /* Turn privilege separation _off_ by default */ if (use_privsep == -1) - use_privsep = 1; + use_privsep = 0; } /* Keyword tokens. */ |