From 8b36eba6c054fb8ac28e51d63e8ac71e73d238f0 Mon Sep 17 00:00:00 2001 From: Christian Brueffer Date: Mon, 12 Jan 2015 19:26:31 +0000 Subject: [PATCH] Fix a typo in the FFS maxbpg option, it was erroneously spelled maxbpf. The error exists in the NetBSD upstream version as well and will be reported back. PR: 196598 Submitted by: Dan McGregor MFC after: 1 week --- usr.sbin/makefs/ffs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/makefs/ffs.c b/usr.sbin/makefs/ffs.c index 9fd87ae6ba5e..1647d8f2268f 100644 --- a/usr.sbin/makefs/ffs.c +++ b/usr.sbin/makefs/ffs.c @@ -191,7 +191,7 @@ ffs_parse_opts(const char *option, fsinfo_t *fsopts) "bytes per inode" }, { "minfree", &ffs_opts->minfree, 0, 99, "minfree" }, - { "maxbpf", &ffs_opts->maxbpg, 1, INT_MAX, + { "maxbpg", &ffs_opts->maxbpg, 1, INT_MAX, "max blocks per file in a cg" }, { "avgfilesize", &ffs_opts->avgfilesize,1, INT_MAX, "expected average file size" },