summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjmc <jmc@openbsd.org>2014-07-13 17:28:13 +0000
committerjmc <jmc@openbsd.org>2014-07-13 17:28:13 +0000
commit0e3c8ccceb0ec3c246cf514f1a9e4b8e5373acb5 (patch)
treefa34e432c28ea6c4361609478b50dfc94690a03e
parentbye bye src url. Never amounted to much, we went another road a while ago (diff)
downloadwireguard-openbsd-0e3c8ccceb0ec3c246cf514f1a9e4b8e5373acb5.tar.xz
wireguard-openbsd-0e3c8ccceb0ec3c246cf514f1a9e4b8e5373acb5.zip
-N for SYNOPSIS and usage(), and some small changes to previous;
-rw-r--r--sbin/fsck/fsck.810
-rw-r--r--sbin/fsck/fsck.c4
2 files changed, 6 insertions, 8 deletions
diff --git a/sbin/fsck/fsck.8 b/sbin/fsck/fsck.8
index b94b2e0ec0f..c7bd9c9885b 100644
--- a/sbin/fsck/fsck.8
+++ b/sbin/fsck/fsck.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: fsck.8,v 1.33 2014/07/13 12:03:48 claudio Exp $
+.\" $OpenBSD: fsck.8,v 1.34 2014/07/13 17:28:13 jmc Exp $
.\" $NetBSD: fsck.8,v 1.14 1996/10/03 20:08:29 christos Exp $
.\"
.\" Copyright (c) 1996 Christos Zoulas. All rights reserved.
@@ -37,7 +37,7 @@
.Sh SYNOPSIS
.Nm fsck
.Bk -words
-.Op Fl dfnpvy
+.Op Fl dfNnpvy
.Op Fl b Ar block#
.Op Fl l Ar maxparallel
.Op Fl T Ar fstype : Ns Ar fsoptions
@@ -104,11 +104,9 @@ the disks are checked round-robin, one file system at a time.
When using
.Xr fstab 5 ,
only check filesystems that have the
-.Ar net
-mount option set.
-By default file systems with the
.Dq net
-option are ignored.
+mount option set.
+By default file systems with this option are ignored.
.It Fl n
Assume a
.Dq no
diff --git a/sbin/fsck/fsck.c b/sbin/fsck/fsck.c
index 9b7366ef325..207ddf8e5f7 100644
--- a/sbin/fsck/fsck.c
+++ b/sbin/fsck/fsck.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fsck.c,v 1.29 2014/07/13 12:03:48 claudio Exp $ */
+/* $OpenBSD: fsck.c,v 1.30 2014/07/13 17:28:13 jmc Exp $ */
/* $NetBSD: fsck.c,v 1.7 1996/10/03 20:06:30 christos Exp $ */
/*
@@ -502,7 +502,7 @@ usage(void)
extern char *__progname;
fprintf(stderr, "usage: %s "
- "[-dfnpvy] [-b block#] [-l maxparallel] [-T fstype:fsoptions]\n"
+ "[-dfNnpvy] [-b block#] [-l maxparallel] [-T fstype:fsoptions]\n"
" [-t fstype] [special | node ...]\n", __progname);
exit(1);
}