summaryrefslogtreecommitdiff
path: root/sbin/newfs/newfs.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1996-11-24 23:46:47 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1996-11-24 23:46:47 +0000
commitd9ba4a0be698afd236898eddbba975b34e27f3de (patch)
tree1944ea4e611bd09cea666cf60384acdf4f9869ff /sbin/newfs/newfs.c
parent74fe66b5050e1cd9aefa602e74930b7c4dca4079 (diff)
Add MOPT_UPDATE to mount options since there is filesystem
support for it. From NetBSD (cgd).
Diffstat (limited to 'sbin/newfs/newfs.c')
-rw-r--r--sbin/newfs/newfs.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/newfs/newfs.c b/sbin/newfs/newfs.c
index 6755756e3c4..05b24156e2d 100644
--- a/sbin/newfs/newfs.c
+++ b/sbin/newfs/newfs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: newfs.c,v 1.4 1996/10/27 20:55:05 downsj Exp $ */
+/* $OpenBSD: newfs.c,v 1.5 1996/11/24 23:46:44 millert Exp $ */
/* $NetBSD: newfs.c,v 1.20 1996/05/16 07:13:03 thorpej Exp $ */
/*
@@ -44,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)newfs.c 8.8 (Berkeley) 4/18/94";
#else
-static char rcsid[] = "$OpenBSD: newfs.c,v 1.4 1996/10/27 20:55:05 downsj Exp $";
+static char rcsid[] = "$OpenBSD: newfs.c,v 1.5 1996/11/24 23:46:44 millert Exp $";
#endif
#endif /* not lint */
@@ -83,6 +83,7 @@ static char rcsid[] = "$OpenBSD: newfs.c,v 1.4 1996/10/27 20:55:05 downsj Exp $"
struct mntopt mopts[] = {
MOPT_STDOPTS,
MOPT_ASYNC,
+ MOPT_UPDATE,
{ NULL },
};