From fb09d35e6a24ef433005728c77453bce99efd010 Mon Sep 17 00:00:00 2001 From: Xavier Chantry Date: Tue, 15 Apr 2008 17:10:39 +0200 Subject: Disable geteuid in cygwin. This is one of those rare cases where we actually want to code in a platform-specific #ifdef. Because you don't need to be the root user on a Windows box, and fakeroot doesn't exist so we can do easy testing, lets disable any checking of the UID. Signed-off-by: Xavier Chantry Signed-off-by: Dan McGee --- src/pacman/pacman.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index 7ae023b2..66fafa10 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -763,7 +763,7 @@ int main(int argc, char *argv[]) { int ret = 0; struct sigaction new_action, old_action; -#if defined(HAVE_GETEUID) +#if defined(HAVE_GETEUID) && !defined(CYGWIN) /* geteuid undefined in CYGWIN */ uid_t myuid = geteuid(); #endif @@ -844,7 +844,7 @@ int main(int argc, char *argv[]) cleanup(ret); } -#if defined(HAVE_GETEUID) +#if defined(HAVE_GETEUID) && !defined(CYGWIN) /* check if we have sufficient permission for the requested operation */ if(myuid > 0 && needs_transaction()) { pm_printf(PM_LOG_ERROR, _("you cannot perform this operation unless you are root.\n")); -- cgit v1.2.3