diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-06-20 18:55:15 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-06-20 18:55:15 +0000 |
commit | c91a86c48569325942bd6d20d0199998bfb66f8f (patch) | |
tree | 5021b08f21a963315f22ae4ee928a3317c9e0bad /libtrivfs/fsys-getroot.c | |
parent | da469d63384a0c5fe3682b1769c13cb530bbf909 (diff) |
Formerly fsys-getroot.c.~8~
Diffstat (limited to 'libtrivfs/fsys-getroot.c')
-rw-r--r-- | libtrivfs/fsys-getroot.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libtrivfs/fsys-getroot.c b/libtrivfs/fsys-getroot.c index 25132697..e2fcc76a 100644 --- a/libtrivfs/fsys-getroot.c +++ b/libtrivfs/fsys-getroot.c @@ -27,9 +27,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ kern_return_t trivfs_S_fsys_getroot (struct trivfs_control *cntl, - int flags, uid_t *uids, u_int nuids, uid_t *gids, u_int ngids, + int flags, + retry_type *do_retry, + char *retry_name, mach_port_t *newpt, mach_msg_type_name_t *newpttype) { @@ -73,6 +75,8 @@ trivfs_S_fsys_getroot (struct trivfs_control *cntl, if (trivfs_protid_create_hook) (*trivfs_protid_create_hook) (cred); + *do_retry = FS_RETRY_NONE; + *retry_name = '\0'; *newpt = ports_get_right (cred); *newpttype = MACH_MSG_TYPE_MAKE_SEND; return 0; |