aboutsummaryrefslogtreecommitdiff
path: root/sbin/clri
diff options
context:
space:
mode:
authorTom Rhodes <trhodes@FreeBSD.org>2002-08-21 18:11:48 +0000
committerTom Rhodes <trhodes@FreeBSD.org>2002-08-21 18:11:48 +0000
commitce66ddb76352a2e5f34aacdbe7733d92e60aff17 (patch)
treeb5ee0aba66633a4e0e47097e4f383c253a87887a /sbin/clri
parent7d971bbf29d32d2a93e71f178b5e6aa0c544df1c (diff)
downloadsrc-ce66ddb76352a2e5f34aacdbe7733d92e60aff17.tar.gz
src-ce66ddb76352a2e5f34aacdbe7733d92e60aff17.zip
s/filesystem/file system/g as discussed on -developers
Notes
Notes: svn path=/head/; revision=102231
Diffstat (limited to 'sbin/clri')
-rw-r--r--sbin/clri/clri.84
-rw-r--r--sbin/clri/clri.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sbin/clri/clri.8 b/sbin/clri/clri.8
index 41c137fbc61a..b0c0f104ad08 100644
--- a/sbin/clri/clri.8
+++ b/sbin/clri/clri.8
@@ -45,14 +45,14 @@
.Bf -symbolic
The
.Nm
-utility is obsoleted for normal filesystem repair work by
+utility is obsoleted for normal file system repair work by
.Xr fsck 8 .
.Ef
.Pp
The
.Nm
utility zeros out the inodes with the specified inode number(s)
-on the filesystem residing on the given
+on the file system residing on the given
.Ar special_device .
The
.Xr fsck 8
diff --git a/sbin/clri/clri.c b/sbin/clri/clri.c
index a33726d5cd05..6f3995b874c0 100644
--- a/sbin/clri/clri.c
+++ b/sbin/clri/clri.c
@@ -70,7 +70,7 @@ static int sblock_try[] = SBLOCKSEARCH;
static void
usage(void)
{
- (void)fprintf(stderr, "usage: clri filesystem inode ...\n");
+ (void)fprintf(stderr, "usage: clri file system inode ...\n");
exit(1);
}
@@ -108,7 +108,7 @@ main(int argc, char *argv[])
break;
}
if (sblock_try[i] == -1) {
- fprintf(stderr, "Cannot find filesystem\n");
+ fprintf(stderr, "Cannot find file system\n");
exit(2);
}
bsize = sbp->fs_bsize;