diff options
author | bde <bde@FreeBSD.org> | 1997-08-25 20:23:16 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-08-25 20:23:16 +0000 |
commit | e79f489cc2d0bd8d7b9628028a71e47b9fb8cd7b (patch) | |
tree | c74dc5accbe5af69ca140e0aaf49824db3fc7081 /sbin/mount_msdos | |
parent | bd600a2a025f267f2b5ffa36fa177965fda7584f (diff) | |
download | FreeBSD-src-e79f489cc2d0bd8d7b9628028a71e47b9fb8cd7b.zip FreeBSD-src-e79f489cc2d0bd8d7b9628028a71e47b9fb8cd7b.tar.gz |
Support all mount flags that are supported in the kernel.
Diffstat (limited to 'sbin/mount_msdos')
-rw-r--r-- | sbin/mount_msdos/mount_msdos.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sbin/mount_msdos/mount_msdos.c b/sbin/mount_msdos/mount_msdos.c index 53ae83b..82f1494 100644 --- a/sbin/mount_msdos/mount_msdos.c +++ b/sbin/mount_msdos/mount_msdos.c @@ -30,7 +30,7 @@ #ifndef lint static const char rcsid[] = - "$Id: mount_msdos.c,v 1.8 1997/03/03 13:23:54 bde Exp $"; + "$Id: mount_msdos.c,v 1.9 1997/03/29 03:32:25 imp Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -53,6 +53,9 @@ static const char rcsid[] = static struct mntopt mopts[] = { MOPT_STDOPTS, + MOPT_FORCE, + MOPT_SYNC, + MOPT_UPDATE, { NULL } }; |