summaryrefslogtreecommitdiff
path: root/auth
diff options
context:
space:
mode:
Diffstat (limited to 'auth')
-rw-r--r--auth/auth.c17
1 files changed, 2 insertions, 15 deletions
diff --git a/auth/auth.c b/auth/auth.c
index daf04aa5..872185e0 100644
--- a/auth/auth.c
+++ b/auth/auth.c
@@ -217,26 +217,13 @@ S_auth_makeauth (struct authhandle *auth,
if (err)
return err;
+ /* Create a new handle with the specified ids. */
+
#define MERGE S (euids); S (egids); S (auids); S (agids);
- if (neuids || nauids || negids || nagids)
- {
- /* Create a new handle with the specified ids. */
#define S(uids) if (!err) err = idvec_merge_ids (&newauth->uids, uids, n##uids)
MERGE;
#undef S
- }
- else
- {
- /* Use the union of the ids of the passed in handles for the new one. */
-
- for (i = 0; !err && i < nauths; ++i)
- {
-#define S(uids) if (!err) err = idvec_merge (&newauth->uids, &auths[i]->uids)
- MERGE;
-#undef S
- }
- }
if (! err)
*newhandle = ports_get_right (newauth);