diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-02-12 11:24:14 +0100 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-02-25 11:19:00 +0100 |
commit | 982261fec4707d0c8d0723d90d9c0e465d98aa93 (patch) | |
tree | a62031c4393800cdcc9717455f55c16245c8b995 /libnetfs/fsysstubs.c | |
parent | 41b88dab57df5a1b490550fd8c4b80788ce55a81 (diff) | |
download | hurd-982261fec4707d0c8d0723d90d9c0e465d98aa93.tar.gz hurd-982261fec4707d0c8d0723d90d9c0e465d98aa93.tar.bz2 hurd-982261fec4707d0c8d0723d90d9c0e465d98aa93.zip |
libnetfs: fix receiver lookups in fsys server functions
* mutations.h: Add translation functions.
* netfs.h (struct netfs_control): New declaration.
* priv.h: Define translation functions.
* fsys-get-options.c: Fix receiver lookups.
* fsys-getroot.c: Likewise.
* fsys-goaway.c: Likewise.
* fsys-set-options.c: Likewise.
* fsys-syncfs.c: Likewise.
* fsysstubs.c: Likewise.
Diffstat (limited to 'libnetfs/fsysstubs.c')
-rw-r--r-- | libnetfs/fsysstubs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libnetfs/fsysstubs.c b/libnetfs/fsysstubs.c index f44155da..a64fd643 100644 --- a/libnetfs/fsysstubs.c +++ b/libnetfs/fsysstubs.c @@ -23,7 +23,7 @@ #include "fsys_S.h" error_t -netfs_S_fsys_getfile (fsys_t cntl, +netfs_S_fsys_getfile (struct netfs_control *cntl, mach_port_t reply, mach_msg_type_name_t reply_type, uid_t *uids, mach_msg_type_number_t nuids, @@ -35,7 +35,7 @@ netfs_S_fsys_getfile (fsys_t cntl, } error_t -netfs_S_fsys_getpriv (fsys_t cntl, +netfs_S_fsys_getpriv (struct netfs_control *cntl, mach_port_t reply, mach_msg_type_name_t reply_type, mach_port_t *host, mach_msg_type_name_t *hosttp, @@ -46,7 +46,7 @@ netfs_S_fsys_getpriv (fsys_t cntl, } error_t -netfs_S_fsys_init (fsys_t cntl, +netfs_S_fsys_init (struct netfs_control *cntl, mach_port_t reply, mach_msg_type_name_t reply_type, mach_port_t proc, auth_t auth) @@ -55,7 +55,7 @@ netfs_S_fsys_init (fsys_t cntl, } error_t -netfs_S_fsys_forward (fsys_t cntl, +netfs_S_fsys_forward (mach_port_t cntl, mach_port_t reply, mach_msg_type_name_t reply_type, mach_port_t request, |