summaryrefslogtreecommitdiff
path: root/servconf.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-06-06 19:47:11 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-06-06 19:47:11 +0000
commitfb62a6948834281fd5628e5566f17c1767a17763 (patch)
tree78be4ed1e64fcc0df2cd2e65e3ad19bd05e2efba /servconf.c
parentdf75dd21f53829f97eff225c87a71e43c8ec4064 (diff)
- 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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/servconf.c b/servconf.c
index 5f8e74e33..7a776ac8e 100644
--- a/servconf.c
+++ b/servconf.c
@@ -10,7 +10,7 @@
10 */ 10 */
11 11
12#include "includes.h" 12#include "includes.h"
13RCSID("$OpenBSD: servconf.c,v 1.109 2002/05/15 21:02:52 markus Exp $"); 13RCSID("$OpenBSD: servconf.c,v 1.110 2002/05/15 21:56:38 markus Exp $");
14 14
15#if defined(KRB4) 15#if defined(KRB4)
16#include <krb.h> 16#include <krb.h>
@@ -250,9 +250,9 @@ fill_default_server_options(ServerOptions *options)
250 if (options->authorized_keys_file == NULL) 250 if (options->authorized_keys_file == NULL)
251 options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS; 251 options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS;
252 252
253 /* Turn privilege separation _off_ by default */ 253 /* Turn privilege separation on by default */
254 if (use_privsep == -1) 254 if (use_privsep == -1)
255 use_privsep = 0; 255 use_privsep = 1;
256} 256}
257 257
258/* Keyword tokens. */ 258/* Keyword tokens. */