(__access): Put the uid/gid arguments to auth_makeauth() in the right order.

This commit is contained in:
Miles Bader 1996-01-04 00:18:53 +00:00
parent 6df1b2474a
commit 9418ccede9

View File

@ -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)))