diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-14 17:08:47 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-14 17:08:47 +0000 |
commit | bf533bd704c6fa04cbba550d397cd83ae1922559 (patch) | |
tree | a1512f8d2f5069880d186a5b4183f67dc5a3a79a /libfshelp/fshelp.h | |
parent | 6df68b9974a489e0eb1777853b398c1cc63deac5 (diff) |
(fshelp_fetch_root): UIDS and GIDS should be arrays.
Diffstat (limited to 'libfshelp/fshelp.h')
-rw-r--r-- | libfshelp/fshelp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libfshelp/fshelp.h b/libfshelp/fshelp.h index c6d0a41c..2190506b 100644 --- a/libfshelp/fshelp.h +++ b/libfshelp/fshelp.h @@ -106,8 +106,8 @@ typedef error_t (*fshelp_callback_t) (void *cookie, the call. */ error_t fshelp_fetch_root (struct transbox *transbox, file_t dotdot, - uid_t uids, int uids_len, - uid_t gids, int gids_len, + uid_t *uids, int uids_len, + uid_t *gids, int gids_len, int flags, fshelp_callback_t callback, retry_type *retry, char *retryname, mach_port_t *root, mach_msg_type_name_t *root_type); |