about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1996-01-04 00:18:53 +0000
committerMiles Bader <miles@gnu.org>1996-01-04 00:18:53 +0000
commit9418ccede9a13454725442ab7f3cf47b3302bf6f (patch)
treedc2f0293791a3a5ab143ea5f3f71cbe2878b6baf
parent6df1b2474adfc23c9cfff5a4496108bea0c37511 (diff)
downloadglibc-9418ccede9a13454725442ab7f3cf47b3302bf6f.tar.gz
glibc-9418ccede9a13454725442ab7f3cf47b3302bf6f.tar.xz
glibc-9418ccede9a13454725442ab7f3cf47b3302bf6f.zip
(__access): Put the uid/gid arguments to auth_makeauth() in the right order.
-rw-r--r--sysdeps/mach/hurd/access.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/access.c b/sysdeps/mach/hurd/access.c
index d347463426..98e2bba3b0 100644
--- a/sysdeps/mach/hurd/access.c
+++ b/sysdeps/mach/hurd/access.c
@@ -98,9 +98,9 @@ DEFUN(__access, (file, type), CONST char *file AND int type)
 			   __auth_makeauth (port,
 					    NULL, MACH_MSG_TYPE_COPY_SEND, 0,
 					    _hurd_id.aux.uids, 1,
-					    _hurd_id.aux.gids, 1,
 					    _hurd_id.aux.uids,
 					    _hurd_id.aux.nuids,
+					    _hurd_id.aux.gids, 1,
 					    _hurd_id.aux.gids,
 					    _hurd_id.aux.ngids,
 					    &_hurd_id.rid_auth)))