diff options
author | Kevin Steves <stevesk@pobox.com> | 2002-05-21 17:59:13 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@pobox.com> | 2002-05-21 17:59:13 +0000 |
commit | bc5bb55755aba69746d22cb9c79873e76e34f0bc (patch) | |
tree | 9e5edf3b405aa1073f376faddfc695798df38484 /sshd.c | |
parent | c5041acef392b489d11cbb1793f72f01acc229b8 (diff) |
- (stevesk) [sshd.c] #ifndef HAVE_CYGWIN for setgroups()
Diffstat (limited to 'sshd.c')
-rw-r--r-- | sshd.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1005,6 +1005,7 @@ main(int ac, char **av) if (test_flag) exit(0); +#ifndef HAVE_CYGWIN /* * Clear out any supplemental groups we may have inherited. This * prevents inadvertent creation of files with bad modes (in the @@ -1014,6 +1015,7 @@ main(int ac, char **av) */ if (setgroups(0, NULL) < 0) debug("setgroups() failed: %.200s", strerror(errno)); +#endif /* !HAVE_CYGWIN */ /* Initialize the log (it is reinitialized below in case we forked). */ if (debug_flag && !inetd_flag) |