summaryrefslogtreecommitdiff
path: root/security/openssh/patches/patch-at
blob: fc46d739006c94c5e55be57370d9defdd3337d92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$NetBSD: patch-at,v 1.1 2005/03/07 23:29:50 tv Exp $

--- servconf.c.orig	2004-08-13 07:30:24.000000000 -0400
+++ servconf.c
@@ -233,7 +233,11 @@ fill_default_server_options(ServerOption
 
 	/* Turn privilege separation on by default */
 	if (use_privsep == -1)
+#ifdef HAVE_INTERIX
+		use_privsep = 0;
+#else
 		use_privsep = 1;
+#endif
 
 #ifndef HAVE_MMAP
 	if (use_privsep && options->compression == 1) {