aboutsummaryrefslogtreecommitdiff
path: root/sbin/badsect/badsect.c
diff options
context:
space:
mode:
authorTom Rhodes <trhodes@FreeBSD.org>2002-05-16 04:10:46 +0000
committerTom Rhodes <trhodes@FreeBSD.org>2002-05-16 04:10:46 +0000
commit3468b317cb93827fbbd4b835f5c233804bc5203c (patch)
tree0adfec655f17ae1258112946fa8d7d72c9c75f76 /sbin/badsect/badsect.c
parent4481bee4621453e6555046bda0aa6ad9f672b773 (diff)
more file system > filesystem
Notes
Notes: svn path=/head/; revision=96707
Diffstat (limited to 'sbin/badsect/badsect.c')
-rw-r--r--sbin/badsect/badsect.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/badsect/badsect.c b/sbin/badsect/badsect.c
index 27054620c9cc..6094db2e0330 100644
--- a/sbin/badsect/badsect.c
+++ b/sbin/badsect/badsect.c
@@ -52,7 +52,7 @@ static const char rcsid[] =
* and makes files containing the blocks of which these sectors are a part.
* It can be used to contain sectors which have problems if these sectors
* are not part of the bad file for the pack (see bad144). For instance,
- * this program can be used if the driver for the file system in question
+ * this program can be used if the driver for the filesystem in question
* does not support bad block forwarding.
*/
#include <sys/param.h>
@@ -169,7 +169,7 @@ chkuse(daddr_t blkno, int cnt)
fsbn = dbtofsb(fs, blkno);
if ((unsigned)(fsbn+cnt) > fs->fs_size) {
- printf("block %ld out of range of file system\n", (long)blkno);
+ printf("block %ld out of range of filesystem\n", (long)blkno);
return (1);
}
cg = dtog(fs, fsbn);
@@ -200,7 +200,7 @@ chkuse(daddr_t blkno, int cnt)
}
/*
- * read a block from the file system
+ * read a block from the filesystem
*/
void
rdfs(daddr_t bno, int size, char *bf)