diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-02-17 13:54:00 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-02-17 13:54:00 -0800 |
commit | c337a18e92147f6980703ea35937e819261b192d (patch) | |
tree | c91ba9dfcd49cd59c1df2963a94b1d3f0c93a791 | |
parent | ee86195796a21699f39f3832160df9258486f7cc (diff) |
unifdef QNX4
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | os/utils.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -448,7 +448,6 @@ SetUserId(void) if (setgid(pwent->pw_gid)) { FatalError("fatal: couldn't set groupid to xfs user's group\n"); } -#ifndef QNX4 #ifndef __CYGWIN__ if (setgroups(0, NULL)) { FatalError("fatal: couldn't drop supplementary groups\n"); @@ -457,7 +456,6 @@ SetUserId(void) if (initgroups(user, pwent->pw_gid)) { FatalError("fatal: couldn't init supplementary groups\n"); } -#endif /* QNX4 */ if (setuid(pwent->pw_uid)) { FatalError("fatal: couldn't set userid to %s user\n", user); } |