From: jmc Date: Sun, 13 Jul 2014 17:28:13 +0000 (+0000) Subject: -N for SYNOPSIS and usage(), and some small changes to previous; X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=0e3c8ccceb0ec3c246cf514f1a9e4b8e5373acb5;p=openbsd -N for SYNOPSIS and usage(), and some small changes to previous; --- 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); }