diff options
author | rodrigc <rodrigc@FreeBSD.org> | 2007-02-13 05:39:38 +0000 |
---|---|---|
committer | rodrigc <rodrigc@FreeBSD.org> | 2007-02-13 05:39:38 +0000 |
commit | 48212b87f309eea2de217a3761d31e2101bc8427 (patch) | |
tree | 970bb02e1bf5ededc086119206941814293ccdb8 /sbin/mount_unionfs | |
parent | f66eda706d12c8f02e4efab30080e02179d3c9a2 (diff) | |
download | FreeBSD-src-48212b87f309eea2de217a3761d31e2101bc8427.zip FreeBSD-src-48212b87f309eea2de217a3761d31e2101bc8427.tar.gz |
Raise WARNS level to 6.
Diffstat (limited to 'sbin/mount_unionfs')
-rw-r--r-- | sbin/mount_unionfs/Makefile | 2 | ||||
-rw-r--r-- | sbin/mount_unionfs/mount_unionfs.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/sbin/mount_unionfs/Makefile b/sbin/mount_unionfs/Makefile index 4794dea..35158ab 100644 --- a/sbin/mount_unionfs/Makefile +++ b/sbin/mount_unionfs/Makefile @@ -7,7 +7,7 @@ MAN= mount_unionfs.8 MOUNT= ${.CURDIR}/../mount CFLAGS+=-I${MOUNT} -WARNS?= 3 +WARNS?= 6 .PATH: ${MOUNT} diff --git a/sbin/mount_unionfs/mount_unionfs.c b/sbin/mount_unionfs/mount_unionfs.c index d6799f4..edb0fff 100644 --- a/sbin/mount_unionfs/mount_unionfs.c +++ b/sbin/mount_unionfs/mount_unionfs.c @@ -132,6 +132,7 @@ main(int argc, char *argv[]) int ch, mntflags, iovlen; char source [MAXPATHLEN], target[MAXPATHLEN], errmsg[255]; char uid_str[20], gid_str[20]; + char fstype[] = "unionfs"; char *p, *val; iov = NULL; @@ -182,7 +183,7 @@ main(int argc, char *argv[]) errx(EX_USAGE, "%s (%s) and %s (%s) are not distinct paths", argv[0], target, argv[1], source); - build_iovec(&iov, &iovlen, "fstype", "unionfs", (size_t)-1); + build_iovec(&iov, &iovlen, "fstype", fstype, (size_t)-1); build_iovec(&iov, &iovlen, "fspath", source, (size_t)-1); build_iovec(&iov, &iovlen, "from", target, (size_t)-1); build_iovec(&iov, &iovlen, "errmsg", errmsg, sizeof(errmsg)); |