diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2023-05-09 00:31:24 +0300 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-05-10 02:43:01 +0200 |
commit | f8e6af9f326c5c0c37f2daf351fe3a34a65db7c6 (patch) | |
tree | eff81eb593d696bf98dbb9976a78eff3c3f56257 /pflocal/io.c | |
parent | ce0ae22d02f286c5a0ef61b5dd8e6ee9b56620d7 (diff) | |
download | hurd-f8e6af9f326c5c0c37f2daf351fe3a34a65db7c6.tar.gz hurd-f8e6af9f326c5c0c37f2daf351fe3a34a65db7c6.tar.bz2 hurd-f8e6af9f326c5c0c37f2daf351fe3a34a65db7c6.zip |
pflocal: Port to x86_64
Message-Id: <20230508213136.608575-30-bugaevc@gmail.com>
Diffstat (limited to 'pflocal/io.c')
-rw-r--r-- | pflocal/io.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/pflocal/io.c b/pflocal/io.c index 06749756..f621bbb3 100644 --- a/pflocal/io.c +++ b/pflocal/io.c @@ -48,6 +48,7 @@ S_io_read (struct sock_user *user, { error_t err; struct pipe *pipe; + size_t data_size = *data_len; if (!user) return EOPNOTSUPP; @@ -63,8 +64,9 @@ S_io_read (struct sock_user *user, { err = pipe_read (pipe, user->sock->flags & PFLOCAL_SOCK_NONBLOCK, NULL, - data, data_len, amount); + data, &data_size, amount); pipe_release_reader (pipe); + *data_len = data_size; } return err; @@ -434,8 +436,8 @@ S_io_reauthenticate (struct sock_user *user, mach_port_t rendezvous) uid_t *uids = uids_buf, *aux_uids = aux_uids_buf; gid_t gids_buf[NIDS], aux_gids_buf[NIDS]; gid_t *gids = gids_buf, *aux_gids = aux_gids_buf; - size_t num_uids = NIDS, num_aux_uids = NIDS; - size_t num_gids = NIDS, num_aux_gids = NIDS; + mach_msg_type_number_t num_uids = NIDS, num_aux_uids = NIDS; + mach_msg_type_number_t num_gids = NIDS, num_aux_gids = NIDS; if (!user) return EOPNOTSUPP; @@ -479,8 +481,8 @@ error_t S_io_restrict_auth (struct sock_user *user, mach_port_t *new_port, mach_msg_type_name_t *new_port_type, - const uid_t *uids, size_t num_uids, - const uid_t *gids, size_t num_gids) + const uid_t *uids, mach_msg_type_number_t num_uids, + const uid_t *gids, mach_msg_type_number_t num_gids) { if (!user) return EOPNOTSUPP; |