summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2012-12-16 13:03:51 +0100
committerAllan McRae <allan@archlinux.org>2013-01-03 03:03:10 +0100
commit5aaf5bcf830cb808de2484c0f3860a22a21a79b4 (patch)
tree035436cbdc635bf1acc3c06dd8ce3bcc0d218df2 /src
parent23f93118d05ff9219fa22b58a54e0f7d2c54ad86 (diff)
downloadpacman-5aaf5bcf830cb808de2484c0f3860a22a21a79b4.tar.gz
pacman-5aaf5bcf830cb808de2484c0f3860a22a21a79b4.tar.xz
Remove Cygwin support
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r--src/pacman/pacman.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c
index 06783180..2c49fe97 100644
--- a/src/pacman/pacman.c
+++ b/src/pacman/pacman.c
@@ -758,8 +758,7 @@ int main(int argc, char *argv[])
size_t i;
struct sigaction new_action, old_action;
const int signals[] = { SIGHUP, SIGINT, SIGTERM, SIGSEGV };
-#if defined(HAVE_GETEUID) && !defined(CYGWIN)
- /* geteuid undefined in CYGWIN */
+#if defined(HAVE_GETEUID)
uid_t myuid = geteuid();
#endif
@@ -881,7 +880,7 @@ int main(int argc, char *argv[])
config->logmask &= ~ALPM_LOG_WARNING;
}
-#if defined(HAVE_GETEUID) && !defined(CYGWIN)
+#if defined(HAVE_GETEUID)
/* check if we have sufficient permission for the requested operation */
if(myuid > 0 && needs_root()) {
pm_printf(ALPM_LOG_ERROR, _("you cannot perform this operation unless you are root.\n"));