diff options
Diffstat (limited to 'sbin/clri')
-rw-r--r-- | sbin/clri/clri.8 | 4 | ||||
-rw-r--r-- | sbin/clri/clri.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sbin/clri/clri.8 b/sbin/clri/clri.8 index 41c137f..b0c0f10 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 a33726d..6f3995b 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; |