Module Name: src
Committed By: christos
Date: Sun Oct 1 22:59:19 UTC 2017
Modified Files:
src/sbin/resize_ffs: resize_ffs.8 resize_ffs.c
Log Message:
PR/52590: David H. Gutteridge: Minor documentation improvements
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sbin/resize_ffs/resize_ffs.8
cvs rdiff -u -r1.51 -r1.52 src/sbin/resize_ffs/resize_ffs.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sbin/resize_ffs/resize_ffs.8
diff -u src/sbin/resize_ffs/resize_ffs.8:1.17 src/sbin/resize_ffs/resize_ffs.8:1.18
--- src/sbin/resize_ffs/resize_ffs.8:1.17 Mon Sep 12 01:47:21 2016
+++ src/sbin/resize_ffs/resize_ffs.8 Sun Oct 1 18:59:19 2017
@@ -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 [email protected]
.\" / \ 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 [email protected]
(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
Index: src/sbin/resize_ffs/resize_ffs.c
diff -u src/sbin/resize_ffs/resize_ffs.c:1.51 src/sbin/resize_ffs/resize_ffs.c:1.52
--- src/sbin/resize_ffs/resize_ffs.c:1.51 Sun Oct 1 03:18:39 2017
+++ src/sbin/resize_ffs/resize_ffs.c Sun Oct 1 18:59:19 2017
@@ -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);
}