diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-06-12 18:57:14 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-06-12 18:57:14 +0200 |
commit | 837461bf9a8f71b96a522bf6f51d6fdcb5b2a8cd (patch) | |
tree | 8d9133b0e60ad650bf440158bb742a8af7f5c06f /uidswap.c | |
parent | - markus@cvs.openbsd.org 2002/06/12 01:09:52 (diff) | |
download | openssh-837461bf9a8f71b96a522bf6f51d6fdcb5b2a8cd.tar.xz openssh-837461bf9a8f71b96a522bf6f51d6fdcb5b2a8cd.zip |
- (bal) Build noop setgroups() for cygwin to clean up code (For other
platforms without the setgroups() requirement, you MUST define
SETGROUPS_NOOP in the configure.ac) Based on patch by vinschen@redhat.com
Diffstat (limited to 'uidswap.c')
-rw-r--r-- | uidswap.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -80,11 +80,9 @@ temporarily_use_uid(struct passwd *pw) if (user_groupslen < 0) fatal("getgroups: %.100s", strerror(errno)); } -#ifndef HAVE_CYGWIN /* Set the effective uid to the given (unprivileged) uid. */ if (setgroups(user_groupslen, user_groups) < 0) fatal("setgroups: %.100s", strerror(errno)); -#endif /* !HAVE_CYGWIN */ #ifndef SAVED_IDS_WORK_WITH_SETEUID /* Propagate the privileged gid to all of our gids. */ if (setgid(getegid()) < 0) @@ -130,10 +128,8 @@ restore_uid(void) setgid(getgid()); #endif /* SAVED_IDS_WORK_WITH_SETEUID */ -#ifndef HAVE_CYGWIN if (setgroups(saved_egroupslen, saved_egroups) < 0) fatal("setgroups: %.100s", strerror(errno)); -#endif /* !HAVE_CYGWIN */ temporarily_use_uid_effective = 0; } |