From 89c532d843c95a085777c66365067d64d1937eb9 Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Sat, 18 Jan 2014 20:43:49 +1100 Subject: - (dtucker) [uidswap.c] Prevent unused variable warnings on Cygwin. Patch from vinschen at redhat.com --- ChangeLog | 4 ++++ uidswap.c | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 4eb85904..ad20184b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +20140118 + - (dtucker) [uidswap.c] Prevent unused variable warnings on Cygwin. Patch + from vinschen at redhat.com + 20140117 - (dtucker) [aclocal.m4 configure.ac] Add some additional compiler/toolchain hardening flags including -fstack-protector-strong. These default to on diff --git a/uidswap.c b/uidswap.c index 23217ba5..1f09d588 100644 --- a/uidswap.c +++ b/uidswap.c @@ -134,7 +134,9 @@ temporarily_use_uid(struct passwd *pw) void permanently_drop_suid(uid_t uid) { +#ifndef HAVE_CYGWIN uid_t old_uid = getuid(); +#endif debug("permanently_drop_suid: %u", (u_int)uid); if (setresuid(uid, uid, uid) < 0) @@ -197,8 +199,10 @@ restore_uid(void) void permanently_set_uid(struct passwd *pw) { +#ifndef HAVE_CYGWIN uid_t old_uid = getuid(); gid_t old_gid = getgid(); +#endif if (pw == NULL) fatal("permanently_set_uid: no user given"); -- cgit v1.2.3