diff --git a/sshd.c b/sshd.c index 9e8bc4353..cb22cbb0e 100644 --- a/sshd.c +++ b/sshd.c @@ -233,7 +233,12 @@ int use_privsep = -1; #endif struct monitor *pmonitor = NULL; int privsep_is_preauth = 1; +#ifdef WINDOWS +/* Windows does not use Unix privilege separation model */ +static int privsep_chroot = 0; +#else static int privsep_chroot = 1; +#endif /* global authentication context */ Authctxt *the_authctxt = NULL;