summaryrefslogtreecommitdiff
path: root/trans/symlink.c
diff options
context:
space:
mode:
Diffstat (limited to 'trans/symlink.c')
-rw-r--r--trans/symlink.c17
1 files changed, 11 insertions, 6 deletions
diff --git a/trans/symlink.c b/trans/symlink.c
index bf527255..d8495f8b 100644
--- a/trans/symlink.c
+++ b/trans/symlink.c
@@ -55,8 +55,8 @@ main (int argc, char **argv)
/* Reply to our parent */
mach_port_allocate (mach_task_self (), MACH_PORT_RIGHT_RECEIVE, &control);
- error = fsys_startup (bootstrap, control,
- MACH_MSG_TYPE_MAKE_SEND, &realnode);
+ error =
+ fsys_startup (bootstrap, 0, control, MACH_MSG_TYPE_MAKE_SEND, &realnode);
if (error)
{
perror ("Starting up translator");
@@ -119,10 +119,8 @@ S_fsys_getroot (mach_port_t fsys_t,
}
error_t
-S_fsys_startup (mach_port_t bootstrap,
- mach_port_t control,
- mach_port_t *real,
- mach_msg_type_name_t *realtype)
+S_fsys_startup (mach_port_t bootstrap, int flags, mach_port_t control,
+ mach_port_t *real, mach_msg_type_name_t *realtype)
{
return EOPNOTSUPP;
}
@@ -151,6 +149,13 @@ S_fsys_set_options (mach_port_t control,
}
error_t
+S_fsys_get_options (mach_port_t control,
+ char **data, mach_msg_type_number_t *len)
+{
+ return EOPNOTSUPP;
+}
+
+error_t
S_fsys_getfile (mach_port_t control,
uid_t *uids,
u_int nuids,