diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-02-01 18:49:09 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-02-01 18:49:09 +0000 |
commit | 86579f56153e9cbd716800bc46288df3075ed742 (patch) | |
tree | bf5204e08ccc886d9314f54ec327de6d506683e6 /sbin | |
parent | af683abde9b3e3be46bf7cd561a4aa4ef73aec10 (diff) |
add softdep displaying in mount listing
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/mount/mount.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index 70761ca402a..d166ee298e4 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount.c,v 1.18 1997/06/18 09:57:04 deraadt Exp $ */ +/* $OpenBSD: mount.c,v 1.19 1998/02/01 18:49:08 mickey Exp $ */ /* $NetBSD: mount.c,v 1.24 1995/11/18 03:34:29 cgd Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)mount.c 8.19 (Berkeley) 4/19/94"; #else -static char rcsid[] = "$OpenBSD: mount.c,v 1.18 1997/06/18 09:57:04 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: mount.c,v 1.19 1998/02/01 18:49:08 mickey Exp $"; #endif #endif /* not lint */ @@ -102,6 +102,7 @@ static struct opt { { MNT_RDONLY, 0, "read-only" }, { MNT_ROOTFS, 1, "root file system" }, { MNT_SYNCHRONOUS, 0, "synchronous" }, + { MNT_SOFTDEP, 0, "softdep" }, { MNT_UNION, 0, "union" }, { NULL } }; |