summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordavid <david@openbsd.org>2004-01-02 06:14:14 +0000
committerdavid <david@openbsd.org>2004-01-02 06:14:14 +0000
commit0add684472b0a9a3115e3058f39fa109920dda30 (patch)
tree0bf4e74085246444aa33be13118228ba12d3ed86
parentTreat all commands returning a sense data ASC of 0x29 as having (diff)
downloadwireguard-openbsd-0add684472b0a9a3115e3058f39fa109920dda30.tar.xz
wireguard-openbsd-0add684472b0a9a3115e3058f39fa109920dda30.zip
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.86
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.