diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-09-13 17:05:50 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-09-13 17:05:50 +0000 |
commit | 8038b2fc8180a3691ba7daaf8bec915f8c4cb2c0 (patch) | |
tree | 0e8dbf54c60eeb8a2ceef93d876186ee1f533730 | |
parent | 36ab93ba175da54b9b758a5d8a9e381272700c09 (diff) |
entered into RCS
-rw-r--r-- | hurd/auth.defs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/hurd/auth.defs b/hurd/auth.defs index 56f95eb2..e2532caa 100644 --- a/hurd/auth.defs +++ b/hurd/auth.defs @@ -36,10 +36,10 @@ AUTH_IMPORTS /* Given an authentication handle, return the identification. */ routine auth_getids ( handle: auth_t; - out gen_uids: idarray_t, dealloc; - out aux_uids: idarray_t, dealloc; - out gen_gids: idarray_t, dealloc; - out aux_gids: idarray_t, dealloc); + out gen_uids: idarray_t; + out aux_uids: idarray_t; + out gen_gids: idarray_t; + out aux_gids: idarray_t); /* Create a new authentication handle. */ routine auth_makeauth ( @@ -73,9 +73,9 @@ routine auth_server_authenticate ( rendezvous: mach_port_send_t; rendezvous2: mach_port_send_t; newport: mach_port_send_t; - out gen_uids: idarray_t, dealloc; - out aux_uids: idarray_t, dealloc; - out gen_gids: idarray_t, dealloc; - out aux_gids: idarray_t, dealloc); + out gen_uids: idarray_t; + out aux_uids: idarray_t; + out gen_gids: idarray_t; + out aux_gids: idarray_t); |