diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-17 00:32:29 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-17 00:43:09 +0100 |
commit | f5fb7c713ea443469406a691e60a6f4567a4cb75 (patch) | |
tree | b16d979915b5ad7e32ffe77ca5f5006dc639a16e /libtrivfs | |
parent | dd3048b2e483f66571cfa1b2ccebb2091b9ad990 (diff) | |
download | hurd-f5fb7c713ea443469406a691e60a6f4567a4cb75.tar.gz hurd-f5fb7c713ea443469406a691e60a6f4567a4cb75.tar.bz2 hurd-f5fb7c713ea443469406a691e60a6f4567a4cb75.zip |
Fix const warnings
Now that the RPCs have const, this forces us cleaning our const-meant
functions.
Diffstat (limited to 'libtrivfs')
-rw-r--r-- | libtrivfs/fsys-getroot.c | 2 | ||||
-rw-r--r-- | libtrivfs/priv.c | 2 | ||||
-rw-r--r-- | libtrivfs/set-options.c | 2 | ||||
-rw-r--r-- | libtrivfs/trivfs.h | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/libtrivfs/fsys-getroot.c b/libtrivfs/fsys-getroot.c index 446f9ff0..cf44657c 100644 --- a/libtrivfs/fsys-getroot.c +++ b/libtrivfs/fsys-getroot.c @@ -70,7 +70,7 @@ trivfs_S_fsys_getroot (struct trivfs_control *cntl, flags &= ~(O_CREAT|O_EXCL|O_NOLINK|O_NOTRANS); struct idvec idvec = { - .ids = uids, + .ids = (id_t*) uids, .num = nuids, .alloced = nuids, }; diff --git a/libtrivfs/priv.c b/libtrivfs/priv.c index ec2bcdfc..f4d9898f 100644 --- a/libtrivfs/priv.c +++ b/libtrivfs/priv.c @@ -54,7 +54,7 @@ error_t (*trivfs_getroot_hook) (struct trivfs_control *cntl, mach_port_t reply_port, mach_msg_type_name_t reply_port_type, mach_port_t dotdot, - uid_t *uids, u_int nuids, uid_t *gids, u_int ngids, + const uid_t *uids, u_int nuids, const uid_t *gids, u_int ngids, int flags, retry_type *do_retry, char *retry_name, mach_port_t *node, mach_msg_type_name_t *node_type) diff --git a/libtrivfs/set-options.c b/libtrivfs/set-options.c index af5355f1..8477beb8 100644 --- a/libtrivfs/set-options.c +++ b/libtrivfs/set-options.c @@ -24,7 +24,7 @@ /* Set runtime options for FSYS to ARGZ & ARGZ_LEN. */ error_t -trivfs_set_options (struct trivfs_control *fsys, char *argz, size_t argz_len) +trivfs_set_options (struct trivfs_control *fsys, const char *argz, size_t argz_len) { if (trivfs_runtime_argp) return fshelp_set_options (trivfs_runtime_argp, 0, argz, argz_len, fsys); diff --git a/libtrivfs/trivfs.h b/libtrivfs/trivfs.h index 4b96f224..c9e5defa 100644 --- a/libtrivfs/trivfs.h +++ b/libtrivfs/trivfs.h @@ -154,7 +154,7 @@ extern error_t (*trivfs_getroot_hook) (struct trivfs_control *cntl, mach_port_t reply_port, mach_msg_type_name_t reply_port_type, mach_port_t dotdot, - uid_t *uids, u_int nuids, uid_t *gids, u_int ngids, + const uid_t *uids, u_int nuids, const uid_t *gids, u_int ngids, int flags, retry_type *do_retry, char *retry_name, mach_port_t *node, mach_msg_type_name_t *node_type); @@ -234,7 +234,7 @@ extern struct argp *trivfs_runtime_argp; for this routine simply uses TRIVFS_RUNTIME_ARGP (supply FSYS as the argp input field). */ error_t trivfs_set_options (struct trivfs_control *fsys, - char *argz, size_t argz_len); + const char *argz, size_t argz_len); /* Append to the malloced string *ARGZ of length *ARGZ_LEN a NUL-separated list of the arguments to this translator. The default definition of this |