summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-06-27 18:02:21 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-06-27 18:02:21 +0000
commit596273516c67cfded71acee848de6db4daa41a1a (patch)
tree0af208ac60edc413019c6e0b3bd168f6d249a720 /sshd.c
parentbdf3e89f1a6d9697c627660cb5ae9828c89ce8f7 (diff)
- (bal) Cygwin uid0 fix by vinschen@redhat.com
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sshd.c b/sshd.c
index 851fad4be..d2524c4bc 100644
--- a/sshd.c
+++ b/sshd.c
@@ -1035,7 +1035,14 @@ main(int ac, char **av)
1035 (S_ISDIR(st.st_mode) == 0)) 1035 (S_ISDIR(st.st_mode) == 0))
1036 fatal("Missing privilege separation directory: %s", 1036 fatal("Missing privilege separation directory: %s",
1037 _PATH_PRIVSEP_CHROOT_DIR); 1037 _PATH_PRIVSEP_CHROOT_DIR);
1038
1039#ifdef HAVE_CYGWIN
1040 if (check_ntsec(_PATH_PRIVSEP_CHROOT_DIR) &&
1041 (st.st_uid != getuid () ||
1042 (st.st_mode & (S_IWGRP|S_IWOTH)) != 0))
1043#else
1038 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0) 1044 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
1045#endif
1039 fatal("Bad owner or mode for %s", 1046 fatal("Bad owner or mode for %s",
1040 _PATH_PRIVSEP_CHROOT_DIR); 1047 _PATH_PRIVSEP_CHROOT_DIR);
1041 } 1048 }