diff options
author | Tom Rhodes <trhodes@FreeBSD.org> | 2002-05-16 04:10:46 +0000 |
---|---|---|
committer | Tom Rhodes <trhodes@FreeBSD.org> | 2002-05-16 04:10:46 +0000 |
commit | 3468b317cb93827fbbd4b835f5c233804bc5203c (patch) | |
tree | 0adfec655f17ae1258112946fa8d7d72c9c75f76 /sbin/dump | |
parent | 4481bee4621453e6555046bda0aa6ad9f672b773 (diff) |
more file system > filesystem
Notes
Notes:
svn path=/head/; revision=96707
Diffstat (limited to 'sbin/dump')
-rw-r--r-- | sbin/dump/Makefile | 2 | ||||
-rw-r--r-- | sbin/dump/dump.h | 2 | ||||
-rw-r--r-- | sbin/dump/main.c | 6 | ||||
-rw-r--r-- | sbin/dump/optr.c | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/sbin/dump/Makefile b/sbin/dump/Makefile index 1148d8fd73d3..77a7ada8d871 100644 --- a/sbin/dump/Makefile +++ b/sbin/dump/Makefile @@ -7,7 +7,7 @@ # optr.c operator interface # dumprmt.c handles remote tape via rmt(8) # tape.c handles the mag tape and opening/closing -# traverse.c traverses the file system +# traverse.c traverses the filesystem # unctime.c undo ctime # # DEBUG use local directory to find ddate and dumpdates diff --git a/sbin/dump/dump.h b/sbin/dump/dump.h index f9a72341eab7..f32113cddfc5 100644 --- a/sbin/dump/dump.h +++ b/sbin/dump/dump.h @@ -84,7 +84,7 @@ int tapeno; /* current tape number */ time_t tstart_writing; /* when started writing the first tape block */ time_t tend_writing; /* after writing the last tape block */ int passno; /* current dump pass number */ -struct fs *sblock; /* the file system super block */ +struct fs *sblock; /* the filesystem super block */ char sblock_buf[MAXBSIZE]; long dev_bsize; /* block size of underlying disk device */ int dev_bshift; /* log2(dev_bsize) */ diff --git a/sbin/dump/main.c b/sbin/dump/main.c index f97eec531d83..860457b6f402 100644 --- a/sbin/dump/main.c +++ b/sbin/dump/main.c @@ -292,7 +292,7 @@ main(int argc, char *argv[]) * disk can be either the full special file name, * the suffix of the special file name, * the special name missing the leading '/', - * the file system name with or without the leading '/'. + * the filesystem name with or without the leading '/'. */ dt = fstabsearch(disk); if (dt != NULL) { @@ -301,7 +301,7 @@ main(int argc, char *argv[]) (void)strncpy(spcl.c_filesys, dt->fs_file, NAMELEN); } else { (void)strncpy(spcl.c_dev, disk, NAMELEN); - (void)strncpy(spcl.c_filesys, "an unlisted file system", + (void)strncpy(spcl.c_filesys, "an unlisted filesystem", NAMELEN); } spcl.c_dev[NAMELEN-1]='\0'; @@ -340,7 +340,7 @@ main(int argc, char *argv[]) if (fstat(diskfd, &sb) != 0) err(X_STARTUP, "%s: stat", disk); if (S_ISDIR(sb.st_mode)) - errx(X_STARTUP, "%s: unknown file system", disk); + errx(X_STARTUP, "%s: unknown filesystem", disk); sync(); sblock = (struct fs *)sblock_buf; bread(SBOFF, (char *) sblock, SBSIZE); diff --git a/sbin/dump/optr.c b/sbin/dump/optr.c index 78e26402e6aa..b0ff473482ca 100644 --- a/sbin/dump/optr.c +++ b/sbin/dump/optr.c @@ -370,9 +370,9 @@ lastdump(int arg) /* w ==> just what to do; W ==> most recent dumps */ qsort((char *) ddatev, nddates, sizeof(struct dumpdates *), datesort); if (arg == 'w') - (void) printf("Dump these file systems:\n"); + (void) printf("Dump these filesystems:\n"); else - (void) printf("Last dump(s) done (Dump '>' file systems):\n"); + (void) printf("Last dump(s) done (Dump '>' filesystems):\n"); lastname = "??"; ITITERATE(i, dtwalk) { if (strncmp(lastname, dtwalk->dd_name, |