From 48212b87f309eea2de217a3761d31e2101bc8427 Mon Sep 17 00:00:00 2001 From: rodrigc Date: Tue, 13 Feb 2007 05:39:38 +0000 Subject: Raise WARNS level to 6. --- sbin/mount_unionfs/Makefile | 2 +- sbin/mount_unionfs/mount_unionfs.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'sbin/mount_unionfs') 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)); -- cgit v1.1