aboutsummaryrefslogtreecommitdiffstats
path: root/guts/setresgid.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/setresgid.c')
-rw-r--r--guts/setresgid.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/guts/setresgid.c b/guts/setresgid.c
deleted file mode 100644
index 2a26405..0000000
--- a/guts/setresgid.c
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright (c) 2008-2010 Wind River Systems; see
- * guts/COPYRIGHT for information.
- *
- * static int
- * wrap_setresgid(gid_t rgid, gid_t egid, gid_t sgid) {
- * int rc = -1;
- */
- rc = 0;
- if (pseudo_euid != 0 && rgid != (gid_t) -1 &&
- rgid != pseudo_egid && rgid != pseudo_rgid && rgid != pseudo_sgid) {
- rc = -1;
- errno = EPERM;
- }
- if (pseudo_euid != 0 && egid != (gid_t) -1 &&
- egid != pseudo_egid && egid != pseudo_rgid && egid != pseudo_sgid) {
- rc = -1;
- errno = EPERM;
- }
- if (pseudo_euid != 0 && sgid != (gid_t) -1 &&
- sgid != pseudo_egid && sgid != pseudo_rgid && sgid != pseudo_sgid) {
- rc = -1;
- errno = EPERM;
- }
- if (rc != -1) {
- if (rgid != (gid_t) -1)
- pseudo_rgid = rgid;
- if (egid != (gid_t) -1)
- pseudo_egid = egid;
- if (sgid != (gid_t) -1)
- pseudo_sgid = sgid;
- pseudo_fgid = pseudo_egid;
- pseudo_client_touchuid();
- }
-/* return rc;
- * }
- */