diff options
author | David Krause <david@cvs.openbsd.org> | 2004-01-02 06:14:15 +0000 |
---|---|---|
committer | David Krause <david@cvs.openbsd.org> | 2004-01-02 06:14:15 +0000 |
commit | 7b6f4fc24b94d40dfc5ef712f5a082d1b36cd5c8 (patch) | |
tree | 4274bf67a76f0ef793e531e7dbb07fcf34b45865 | |
parent | 68a37627ef457160b76a9f7976d93360f4e80fc9 (diff) |
fix mount_mfs example: -N is only an option for newfs not mount_mfs
also use a real device name like sd0b
ok millert@ jmc@
-rw-r--r-- | sbin/mount/mount.8 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/mount/mount.8 b/sbin/mount/mount.8 index 572def62492..1aa9d7676d2 100644 --- a/sbin/mount/mount.8 +++ b/sbin/mount/mount.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mount.8,v 1.46 2003/10/01 08:07:28 jmc Exp $ +.\" $OpenBSD: mount.8,v 1.47 2004/01/02 06:14:14 david Exp $ .\" $NetBSD: mount.8,v 1.11 1995/07/12 06:23:21 cgd Exp $ .\" .\" Copyright (c) 1980, 1989, 1991, 1993 @@ -221,14 +221,14 @@ For example, the .Nm command: .Bd -literal -offset indent -# mount -t mfs -o nosuid,-N,-s=4000 /dev/dk0b /tmp +# mount -t mfs -o nosuid,-s=4000 /dev/sd0b /tmp .Ed .Pp causes .Nm to execute the equivalent of: .Bd -literal -offset indent -# /sbin/mount_mfs -o nosuid -N -s 4000 /dev/dk0b /tmp +# /sbin/mount_mfs -o nosuid -s 4000 /dev/sd0b /tmp .Ed .It Fl r The file system is to be mounted read-only. |