diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-02-03 20:34:19 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-02-03 20:34:19 +0000 |
commit | ee602fee4a4a5ed1889e5bd3a280b4be0e22ea28 (patch) | |
tree | 564952a71c72f480a601744901344d995d4aca30 /libdiskfs | |
parent | 85bc372aa83a70d5cab7f04bc6e3431b677a0c2d (diff) |
Formerly io-reauthenticate.c.~2~
Diffstat (limited to 'libdiskfs')
-rw-r--r-- | libdiskfs/io-reauthenticate.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libdiskfs/io-reauthenticate.c b/libdiskfs/io-reauthenticate.c index aa14c0f9..ff4e1d19 100644 --- a/libdiskfs/io-reauthenticate.c +++ b/libdiskfs/io-reauthenticate.c @@ -16,6 +16,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "priv.h" +#include "io_S.h" /* Implement io_reathenticate as described in <hurd/io.defs>. */ error_t @@ -39,7 +40,7 @@ S_io_reauthenticate (struct protid *cred, aubuf = aux_uids; agbuf = aux_gids; mutex_lock (&cred->po->np->lock); - newcred = start_making_protid (cred->po); + newcred = diskfs_start_protid (cred->po); err = auth_server_authenticate (auth_server_port, cred->fspt.pi.port, MACH_MSG_TYPE_MAKE_SEND, @@ -52,7 +53,7 @@ S_io_reauthenticate (struct protid *cred, &aux_gids, &auxgidlen); assert (!err); /* XXX */ - finish_protid (newcred, gen_uids, genuidlen, gen_gids, gengidlen); + diskfs_finish_protid (newcred, gen_uids, genuidlen, gen_gids, gengidlen); if (gubuf != gen_uids) vm_deallocate (mach_task_self (), (u_int) gen_uids, |