diff options
-rw-r--r-- | hurd/auth_reply.defs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/hurd/auth_reply.defs b/hurd/auth_reply.defs index 26e66287..ad203b11 100644 --- a/hurd/auth_reply.defs +++ b/hurd/auth_reply.defs @@ -1,11 +1,11 @@ /* Reply-only side of auth interface - Copyright (C) 1991 Free Software Foundation + Copyright (C) 1991, 1993 Free Software Foundation This file is part of the GNU Hurd. The GNU Hurd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 1, or (at your option) +the Free Software Foundation; either version 2, or (at your option) any later version. The GNU Hurd is distributed in the hope that it will be useful, @@ -28,6 +28,7 @@ type reply_port_t = polymorphic | MACH_MSG_TYPE_PORT_SEND_ONCE skip; /* auth_getids */ skip; /* auth_makeauth */ +skip; /* auth_combine */ simpleroutine auth_user_authenticate_reply ( reply_port: reply_port_t; @@ -37,5 +38,8 @@ simpleroutine auth_user_authenticate_reply ( simpleroutine auth_server_authenticate_reply ( reply_port: reply_port_t; in return_code: kern_return_t; - in idblock: idblock_t); + in gen_uids: idarray_t; + in aux_uids: idarray_t; + in gen_gids: idarray_t; + in aux_gids: idarray_t); |