Noticed the following error message:

mount_msdosfs: /dev/cf0s1: : Operation not supported by device

and thought I'd fix it to be:

mount_msdosfs: /dev/cf0s1: Operation not supported by device

Not sure why errmsg isn't getting filled in, or why this error is even
happening at all... (fsck_msdosfs is clean, and I can mount this same
CF elsewhere).
This commit is contained in:
Warner Losh 2008-11-29 02:28:05 +00:00
parent 1e7d7466b7
commit 44e6d7240a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=185422

View file

@ -218,8 +218,12 @@ main(int argc, char **argv)
build_iovec_argf(&iov, &iovlen, "mask", "%u", mask);
build_iovec_argf(&iov, &iovlen, "dirmask", "%u", dirmask);
if (nmount(iov, iovlen, mntflags) < 0)
err(1, "%s: %s", dev, errmsg);
if (nmount(iov, iovlen, mntflags) < 0) {
if (errmsg[0])
err(1, "%s: %s", dev, errmsg);
else
err(1, "%s", dev);
}
exit (0);
}