diff options
author | bde <bde@FreeBSD.org> | 1997-03-03 13:23:54 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-03-03 13:23:54 +0000 |
commit | 7de8df2b4b2cbbd2d540b1f2b1b4bdd605fd298d (patch) | |
tree | 0958f29f7bec6daca62ecf9b58b60de074af570e /sbin/mount_msdosfs | |
parent | 1d929b9ddb6d46110e43b5c5688e3809d4b5dbc3 (diff) | |
download | FreeBSD-src-7de8df2b4b2cbbd2d540b1f2b1b4bdd605fd298d.zip FreeBSD-src-7de8df2b4b2cbbd2d540b1f2b1b4bdd605fd298d.tar.gz |
Updated mount_msdos to use the Lite2 getvfsbyname() interface.
Diffstat (limited to 'sbin/mount_msdosfs')
-rw-r--r-- | sbin/mount_msdosfs/Makefile | 3 | ||||
-rw-r--r-- | sbin/mount_msdosfs/mount_msdosfs.c | 23 |
2 files changed, 14 insertions, 12 deletions
diff --git a/sbin/mount_msdosfs/Makefile b/sbin/mount_msdosfs/Makefile index b0460ef..f6c88ab 100644 --- a/sbin/mount_msdosfs/Makefile +++ b/sbin/mount_msdosfs/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.4 1997/02/22 14:32:29 peter Exp $ # PROG= mount_msdos @@ -10,6 +10,7 @@ BINOWN= root BINMODE= 4555 MOUNT= ${.CURDIR}/../../mount +CFLAGS+= -D_NEW_VFSCONF CFLAGS+= -I${MOUNT} .PATH: ${MOUNT} diff --git a/sbin/mount_msdosfs/mount_msdosfs.c b/sbin/mount_msdosfs/mount_msdosfs.c index 590ced7..dff366b 100644 --- a/sbin/mount_msdosfs/mount_msdosfs.c +++ b/sbin/mount_msdosfs/mount_msdosfs.c @@ -30,14 +30,15 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$Id: mount_msdos.c,v 1.7 1997/02/22 14:32:30 peter Exp $"; #endif /* not lint */ -#include <sys/cdefs.h> #include <sys/param.h> -#define MSDOSFS #include <sys/mount.h> #include <sys/stat.h> + +#include <msdosfs/msdosfsmount.h> + #include <ctype.h> #include <err.h> #include <grp.h> @@ -67,9 +68,9 @@ main(argc, argv) { struct msdosfs_args args; struct stat sb; - int c, mntflags, set_gid, set_uid, set_mask; + int c, error, mntflags, set_gid, set_uid, set_mask; char *dev, *dir, ndir[MAXPATHLEN+1]; - struct vfsconf *vfc; + struct vfsconf vfc; mntflags = set_gid = set_uid = set_mask = 0; (void)memset(&args, '\0', sizeof(args)); @@ -131,17 +132,17 @@ main(argc, argv) args.mask = sb.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO); } - vfc = getvfsbyname("msdos"); - if(!vfc && vfsisloadable("msdos")) { - if(vfsload("msdos")) + error = getvfsbyname("msdos", &vfc); + if (error && vfsisloadable("msdos")) { + if (vfsload("msdos")) err(EX_OSERR, "vfsload(msdos)"); endvfsent(); /* clear cache */ - vfc = getvfsbyname("msdos"); + error = getvfsbyname("msdos", &vfc); } - if (!vfc) + if (error) errx(EX_OSERR, "msdos filesystem is not available"); - if (mount(vfc->vfc_index, dir, mntflags, &args) < 0) + if (mount(vfc.vfc_name, dir, mntflags, &args) < 0) err(EX_OSERR, "%s", dev); exit (0); |