PR/52590: David H. Gutteridge: Minor documentation improvements

This commit is contained in:
christos 2017-10-01 22:59:19 +00:00
parent 329c11fb8f
commit 7ebfc10b9a
2 changed files with 7 additions and 9 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: resize_ffs.8,v 1.17 2016/09/12 05:47:21 sevan Exp $
.\" $NetBSD: resize_ffs.8,v 1.18 2017/10/01 22:59:19 christos Exp $
.\"
.\" As its sole author, I explicitly place this man page in the public
.\" domain. Anyone may use it in any way for any purpose (though I would
@ -9,7 +9,7 @@
.\" X Against HTML mouse@rodents.montreal.qc.ca
.\" / \ Email! 7D C8 61 52 5D E7 2D 39 4E F1 31 3E E8 B3 27 4B
.\"
.Dd April 6, 2015
.Dd October 1, 2017
.Dt RESIZE_FFS 8
.Os
.Sh NAME
@ -128,10 +128,8 @@ command first appeared in
.Aq riz@NetBSD.org
(Byteswapped file system and UFS2 support)
.Pp
A big bug-finding kudos goes to John Kohl for finding the rotational
layout bug referred to in the
.Sx WARNING
section above.
A big bug-finding kudos goes to John Kohl for finding a significant
rotational layout bug.
.Sh BUGS
Can fail to shrink a file system when there actually is enough space,
because it does not distinguish between a block allocated as a block

View File

@ -1,4 +1,4 @@
/* $NetBSD: resize_ffs.c,v 1.51 2017/10/01 07:18:39 mlelstv Exp $ */
/* $NetBSD: resize_ffs.c,v 1.52 2017/10/01 22:59:19 christos Exp $ */
/* From sources sent on February 17, 2003 */
/*-
* As its sole author, I explicitly place this code in the public
@ -36,7 +36,7 @@
*/
#include <sys/cdefs.h>
__RCSID("$NetBSD: resize_ffs.c,v 1.51 2017/10/01 07:18:39 mlelstv Exp $");
__RCSID("$NetBSD: resize_ffs.c,v 1.52 2017/10/01 22:59:19 christos Exp $");
#include <sys/disk.h>
#include <sys/disklabel.h>
@ -2304,7 +2304,7 @@ static void
usage(void)
{
(void)fprintf(stderr, "usage: %s [-cvy] [-s size] special\n",
(void)fprintf(stderr, "usage: %s [-cpvy] [-s size] special\n",
getprogname());
exit(EXIT_FAILURE);
}