mirror of git://sourceware.org/git/glibc.git
(__access): Put the uid/gid arguments to auth_makeauth() in the right order.
This commit is contained in:
parent
6df1b2474a
commit
9418ccede9
|
|
@ -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)))
|
||||
|
|
|
|||
Loading…
Reference in New Issue