mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-01-27 18:34:22 +03:00
Re-fix -Wwrite-strings on FreeBSD
Follow up fix for a926aab902
.
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz>
Closes #13348
Closes #13610
This commit is contained in:
parent
eefe83eaa6
commit
6fca6195cd
@ -79,7 +79,7 @@ extern int _sol_getmntent(FILE *fp, struct mnttab *mp);
|
|||||||
extern int getextmntent(const char *path, struct extmnttab *entry,
|
extern int getextmntent(const char *path, struct extmnttab *entry,
|
||||||
struct stat64 *statbuf);
|
struct stat64 *statbuf);
|
||||||
extern void statfs2mnttab(struct statfs *sfs, struct mnttab *mp);
|
extern void statfs2mnttab(struct statfs *sfs, struct mnttab *mp);
|
||||||
extern char *hasmntopt(struct mnttab *mnt, char *opt);
|
extern char *hasmntopt(struct mnttab *mnt, const char *opt);
|
||||||
extern int getmntent(FILE *fp, struct mnttab *mp);
|
extern int getmntent(FILE *fp, struct mnttab *mp);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -67,7 +67,7 @@ mntopt(char **p)
|
|||||||
}
|
}
|
||||||
|
|
||||||
char *
|
char *
|
||||||
hasmntopt(struct mnttab *mnt, char *opt)
|
hasmntopt(struct mnttab *mnt, const char *opt)
|
||||||
{
|
{
|
||||||
char tmpopts[MNT_LINE_MAX];
|
char tmpopts[MNT_LINE_MAX];
|
||||||
char *f, *opts = tmpopts;
|
char *f, *opts = tmpopts;
|
||||||
|
@ -75,7 +75,7 @@ build_iovec(struct iovec **iov, int *iovlen, const char *name, void *val,
|
|||||||
|
|
||||||
static int
|
static int
|
||||||
do_mount_(const char *spec, const char *dir, int mflag,
|
do_mount_(const char *spec, const char *dir, int mflag,
|
||||||
char *dataptr, int datalen, char *optptr, int optlen)
|
char *dataptr, int datalen, const char *optptr, int optlen)
|
||||||
{
|
{
|
||||||
struct iovec *iov;
|
struct iovec *iov;
|
||||||
char *optstr, *p, *tofree;
|
char *optstr, *p, *tofree;
|
||||||
|
@ -1669,7 +1669,7 @@ zfs_acl_ids_create(znode_t *dzp, int flag, vattr_t *vap, cred_t *cr,
|
|||||||
acl_ids->z_fgid = 0;
|
acl_ids->z_fgid = 0;
|
||||||
}
|
}
|
||||||
if (acl_ids->z_fgid == 0) {
|
if (acl_ids->z_fgid == 0) {
|
||||||
char *domain;
|
const char *domain;
|
||||||
uint32_t rid;
|
uint32_t rid;
|
||||||
|
|
||||||
acl_ids->z_fgid = dzp->z_gid;
|
acl_ids->z_fgid = dzp->z_gid;
|
||||||
|
Loading…
Reference in New Issue
Block a user