diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1996-11-24 23:46:47 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1996-11-24 23:46:47 +0000 |
commit | d9ba4a0be698afd236898eddbba975b34e27f3de (patch) | |
tree | 1944ea4e611bd09cea666cf60384acdf4f9869ff /sbin/mount_msdos | |
parent | 74fe66b5050e1cd9aefa602e74930b7c4dca4079 (diff) |
Add MOPT_UPDATE to mount options since there is filesystem
support for it. From NetBSD (cgd).
Diffstat (limited to 'sbin/mount_msdos')
-rw-r--r-- | sbin/mount_msdos/mount_msdos.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sbin/mount_msdos/mount_msdos.c b/sbin/mount_msdos/mount_msdos.c index e7a701850cb..44d3ca3f92e 100644 --- a/sbin/mount_msdos/mount_msdos.c +++ b/sbin/mount_msdos/mount_msdos.c @@ -1,5 +1,5 @@ -/* $OpenBSD: mount_msdos.c,v 1.5 1996/06/23 14:31:27 deraadt Exp $ */ -/* $NetBSD: mount_msdos.c,v 1.14 1996/04/13 05:35:47 cgd Exp $ */ +/* $OpenBSD: mount_msdos.c,v 1.6 1996/11/24 23:46:46 millert Exp $ */ +/* $NetBSD: mount_msdos.c,v 1.16 1996/10/24 00:12:50 cgd Exp $ */ /* * Copyright (c) 1994 Christopher G. Demetriou @@ -32,7 +32,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: mount_msdos.c,v 1.5 1996/06/23 14:31:27 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: mount_msdos.c,v 1.6 1996/11/24 23:46:46 millert Exp $"; #endif /* not lint */ #include <sys/cdefs.h> @@ -52,6 +52,7 @@ static char rcsid[] = "$OpenBSD: mount_msdos.c,v 1.5 1996/06/23 14:31:27 deraadt const struct mntopt mopts[] = { MOPT_STDOPTS, + MOPT_UPDATE, { NULL } }; |