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 /console-client | |
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 'console-client')
-rw-r--r-- | console-client/current-vcs.c | 5 | ||||
-rw-r--r-- | console-client/trans.c | 20 | ||||
-rw-r--r-- | console-client/trans.h | 4 |
3 files changed, 15 insertions, 14 deletions
diff --git a/console-client/current-vcs.c b/console-client/current-vcs.c index fb053799..ce90de4f 100644 --- a/console-client/current-vcs.c +++ b/console-client/current-vcs.c @@ -107,9 +107,10 @@ vcs_read (struct protid *user, char **data, /* Making a link to set current vcs. Relative values perform relative switches. */ static error_t -vcs_mksymlink (struct iouser *user, struct node *np, char *name) +vcs_mksymlink (struct iouser *user, struct node *np, const char *name) { - char *c, *d; + const char *c; + char *d; int vt, delta = 0; c = strrchr (name, '/'); diff --git a/console-client/trans.c b/console-client/trans.c index 17cface0..fe4b9ca4 100644 --- a/console-client/trans.c +++ b/console-client/trans.c @@ -137,7 +137,7 @@ netfs_attempt_chmod (struct iouser *cred, struct node *np, /* Attempt to turn NODE (user CRED) into a symlink with target NAME. */ error_t netfs_attempt_mksymlink (struct iouser *cred, struct node *np, - char *name) + const char *name) { if (!np->nn->node) { @@ -244,7 +244,7 @@ netfs_attempt_syncfs (struct iouser *cred, int wait) what.) */ error_t netfs_attempt_lookup (struct iouser *user, struct node *dir, - char *name, struct node **node) + const char *name, struct node **node) { error_t err; consnode_t cn; @@ -383,7 +383,7 @@ netfs_S_io_select_timeout (struct protid *user, mach_port_t reply, /* Delete NAME in DIR (which is locked) for USER. */ error_t netfs_attempt_unlink (struct iouser *user, struct node *dir, - char *name) + const char *name) { error_t err; consnode_t cn; @@ -408,8 +408,8 @@ netfs_attempt_unlink (struct iouser *user, struct node *dir, of the specific nodes are locked. */ error_t netfs_attempt_rename (struct iouser *user, struct node *fromdir, - char *fromname, struct node *todir, - char *toname, int excl) + const char *fromname, struct node *todir, + const char *toname, int excl) { return EOPNOTSUPP; } @@ -419,7 +419,7 @@ netfs_attempt_rename (struct iouser *user, struct node *fromdir, locked) for USER with mode MODE. */ error_t netfs_attempt_mkdir (struct iouser *user, struct node *dir, - char *name, mode_t mode) + const char *name, mode_t mode) { return EOPNOTSUPP; } @@ -429,7 +429,7 @@ netfs_attempt_mkdir (struct iouser *user, struct node *dir, USER. */ error_t netfs_attempt_rmdir (struct iouser *user, - struct node *dir, char *name) + struct node *dir, const char *name) { return EOPNOTSUPP; } @@ -440,7 +440,7 @@ netfs_attempt_rmdir (struct iouser *user, target. Return EEXIST if NAME is already found in DIR. */ error_t netfs_attempt_link (struct iouser *user, struct node *dir, - struct node *file, char *name, int excl) + struct node *file, const char *name, int excl) { error_t err; consnode_t cn; @@ -506,7 +506,7 @@ netfs_attempt_mkfile (struct iouser *user, struct node *dir, unlock DIR before returning. */ error_t netfs_attempt_create_file (struct iouser *user, struct node *dir, - char *name, mode_t mode, struct node **np) + const char *name, mode_t mode, struct node **np) { *np = 0; pthread_mutex_unlock (&dir->lock); @@ -567,7 +567,7 @@ netfs_attempt_read (struct iouser *cred, struct node *np, io_write, which is overridden. */ error_t netfs_attempt_write (struct iouser *cred, struct node *np, - loff_t offset, size_t *len, void *data) + loff_t offset, size_t *len, const void *data) { return EOPNOTSUPP; } diff --git a/console-client/trans.h b/console-client/trans.h index 9891cf3f..c7ca6a79 100644 --- a/console-client/trans.h +++ b/console-client/trans.h @@ -37,7 +37,7 @@ struct consnode /* Read data to a node. This is exactly the same as io_write does. */ - error_t (*write) (struct protid *user, char *data, + error_t (*write) (struct protid *user, const char *data, mach_msg_type_number_t datalen, off_t offset, mach_msg_type_number_t *amount); @@ -59,7 +59,7 @@ struct consnode error_t (*readlink) (struct iouser *user, struct node *np, char *buf); /* Called when the symlink is written */ - error_t (*mksymlink) (struct iouser *cred, struct node *np, char *name); + error_t (*mksymlink) (struct iouser *cred, struct node *np, const char *name); struct consnode *next; }; |