From 837461bf9a8f71b96a522bf6f51d6fdcb5b2a8cd Mon Sep 17 00:00:00 2001 From: Ben Lindstrom Date: Wed, 12 Jun 2002 16:57:14 +0000 Subject: - (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 --- uidswap.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'uidswap.c') diff --git a/uidswap.c b/uidswap.c index 9377ca4b..0a772c7b 100644 --- a/uidswap.c +++ b/uidswap.c @@ -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; } -- cgit v1.2.1