about summary refs log tree commit diff
path: root/src/libmain
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2004-08-20T15·47+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2004-08-20T15·47+0000
commit8f58733ef16bdefe3cdb004bea986b6a0b893331 (patch)
tree720fa2bfece2807d2a262913c403c2629e235cb5 /src/libmain
parent1c90fabccc0b859d9a357c96bfbc0c19a4ce17da (diff)
* The gid should also match.
Diffstat (limited to 'src/libmain')
-rw-r--r--src/libmain/shared.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libmain/shared.cc b/src/libmain/shared.cc
index e0e9328dd0..7917407bb2 100644
--- a/src/libmain/shared.cc
+++ b/src/libmain/shared.cc
@@ -178,7 +178,7 @@ void switchToNixUser()
 #if SETUID_HACK
 
     /* Don't do anything if this is not a setuid binary. */
-    if (getuid() == geteuid()) return;
+    if (getuid() == geteuid() && getgid() == getegid()) return;
 
     /* Here we set the uid and gid to the Nix user and group,
        respectively, IF the current (real) user is a member of the Nix