summaryrefslogtreecommitdiffstats
path: root/sbin/mount/mount.c
diff options
context:
space:
mode:
authortrhodes <trhodes@FreeBSD.org>2002-05-16 04:10:46 +0000
committertrhodes <trhodes@FreeBSD.org>2002-05-16 04:10:46 +0000
commit896f3841bf047ca93766900f8cd8c5852e6a9245 (patch)
tree0adfec655f17ae1258112946fa8d7d72c9c75f76 /sbin/mount/mount.c
parent0c40c9d08e198e96b30b9b27d5caea7fce0f7118 (diff)
downloadFreeBSD-src-896f3841bf047ca93766900f8cd8c5852e6a9245.zip
FreeBSD-src-896f3841bf047ca93766900f8cd8c5852e6a9245.tar.gz
more file system > filesystem
Diffstat (limited to 'sbin/mount/mount.c')
-rw-r--r--sbin/mount/mount.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c
index ab71799..64c3f57 100644
--- a/sbin/mount/mount.c
+++ b/sbin/mount/mount.c
@@ -268,10 +268,10 @@ main(argc, argv)
rmslashes(*argv, *argv);
if ((fs = getfsfile(*argv)) == NULL &&
(fs = getfsspec(*argv)) == NULL)
- errx(1, "%s: unknown special file or file system",
+ errx(1, "%s: unknown special file or filesystem",
*argv);
if (BADTYPE(fs->fs_type))
- errx(1, "%s has unknown file system type",
+ errx(1, "%s has unknown filesystem type",
*argv);
rval = mountfs(fs->fs_vfstype, fs->fs_spec, fs->fs_file,
init_flags, options, fs->fs_mntops);
@@ -334,7 +334,7 @@ ismounted(fs, mntbuf, mntsize)
int i;
if (fs->fs_file[0] == '/' && fs->fs_file[1] == '\0')
- /* the root file system can always be remounted */
+ /* the root filesystem can always be remounted */
return (0);
for (i = mntsize - 1; i >= 0; --i)
OpenPOWER on IntegriCloud