diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-05-15 23:37:34 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-05-15 23:37:34 +0200 |
commit | c5c15dde328e364b28d2aa815f31a51207fd6622 (patch) | |
tree | ad1d8fd53363c4faebab453898a33493ed84301b /servconf.c | |
parent | - millert@cvs.openbsd.org 2002/05/06 23:34:33 (diff) | |
download | openssh-c5c15dde328e364b28d2aa815f31a51207fd6622.tar.xz openssh-c5c15dde328e364b28d2aa815f31a51207fd6622.zip |
- 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
diff --git a/servconf.c b/servconf.c index 5b894f744..5f8e74e33 100644 --- a/servconf.c +++ b/servconf.c @@ -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. */ |