summaryrefslogtreecommitdiffstats
path: root/sbin/mount_std
diff options
context:
space:
mode:
authortrhodes <trhodes@FreeBSD.org>2002-08-21 18:11:48 +0000
committertrhodes <trhodes@FreeBSD.org>2002-08-21 18:11:48 +0000
commit136be46680c6e4a18cc827da991d4f9a0de29cba (patch)
treeb5ee0aba66633a4e0e47097e4f383c253a87887a /sbin/mount_std
parent9618da3e35435c433d8086d65af15f716ffe32ec (diff)
downloadFreeBSD-src-136be46680c6e4a18cc827da991d4f9a0de29cba.zip
FreeBSD-src-136be46680c6e4a18cc827da991d4f9a0de29cba.tar.gz
s/filesystem/file system/g as discussed on -developers
Diffstat (limited to 'sbin/mount_std')
-rw-r--r--sbin/mount_std/mount_std.836
-rw-r--r--sbin/mount_std/mount_std.c6
2 files changed, 21 insertions, 21 deletions
diff --git a/sbin/mount_std/mount_std.8 b/sbin/mount_std/mount_std.8
index a228700..fa90f57 100644
--- a/sbin/mount_std/mount_std.8
+++ b/sbin/mount_std/mount_std.8
@@ -47,7 +47,7 @@
.Nm mount_procfs
.Nd mount
.Dq standard
-filesystems
+file systems
.Sh SYNOPSIS
.Nm mount_ Ns Ar fsname
.Op Fl o Ar options
@@ -56,16 +56,16 @@ filesystems
.Sh DESCRIPTION
The
.Nm
-utility is a generic mechanism for attaching ``standard'' filesystems to
-the filesystem. The
+utility is a generic mechanism for attaching ``standard'' file systems to
+the file system. The
.Nm
-utility currently supports the following filesystems:
+utility currently supports the following file systems:
.Nm devfs ,
.Nm fdescfs ,
.Nm linprocfs
and
.Nm procfs .
-A ``standard'' filesystem is one which:
+A ``standard'' file system is one which:
.Bl -enum -offset indent
.It
accepts only the standard
@@ -80,7 +80,7 @@ options
and
.Dq union .
.It
-has a kernel filesystem module name the same as its user-visible name.
+has a kernel file system module name the same as its user-visible name.
.It
requires no other special processing on the part of the
.Nm
@@ -101,25 +101,25 @@ man page for possible options and their meanings.
The
.Nm
utility examines its zeroth command-line argument (the name by which
-it was called) to determine the type of filesystem to be mounted. If
+it was called) to determine the type of file system to be mounted. If
it is called by a name which does not end in
.Dq Li _ Ns Ar fsname ,
.Nm
will assume (for compatibility
with
.Xr mount 8 )
-that the zeroth argument contains only the name of the filesystem type.
+that the zeroth argument contains only the name of the file system type.
The
.Nm
utility is normally installed with appropriate links to commands for
-the distributed filesystems which can be mounted in this way;
-for information on the function of each filesystem, see the manual page
+the distributed file systems which can be mounted in this way;
+for information on the function of each file system, see the manual page
for that specific
.Nm mount_ Ns Ar fsname
utility.
.Pp
Refer to the following manual pages for detailed information
-on these filesystem:
+on these file system:
.Xr devfs 5 ,
.Xr fdescfs 5 ,
.Xr linprocfs 5
@@ -132,8 +132,8 @@ The
.Nm
utility was called with a zeroth argument of
.Dq Li mount_std .
-.It %s filesystem not available
-The specified filesystem type was not present in the kernel and no
+.It %s file system not available
+The specified file system type was not present in the kernel and no
loadable module for it was found.
.El
.Sh SEE ALSO
@@ -147,25 +147,25 @@ loadable module for it was found.
.Xr procfs 5 ,
.Xr mount 8
.Sh CAVEATS
-None of the ``standard'' filesystems may be NFS-exported.
+None of the ``standard'' file systems may be NFS-exported.
.Sh HISTORY
The
.Nm
utility first appeared in
.Fx 2.2 .
-Loadable filesystem modules first appeared in
+Loadable file system modules first appeared in
.Fx 2.0 .
The
.Dq fdescfs
and
.Dq procfs
-filesystem types first appeared in
+file system types first appeared in
.Fx 2.0 ;
the
.Dq devfs
-filesystem type first appeared in
+file system type first appeared in
.Fx 2.2 ;
the
.Dq linprocfs
-filesystem type first appeared in
+file system type first appeared in
.Fx 4.0 .
diff --git a/sbin/mount_std/mount_std.c b/sbin/mount_std/mount_std.c
index 00421a1..1f3c8d3 100644
--- a/sbin/mount_std/mount_std.c
+++ b/sbin/mount_std/mount_std.c
@@ -90,9 +90,9 @@ main(argc, argv)
/*
* XXX
* mount(8) calls the mount programs with an argv[0] which is
- * /just/ the filesystem name. So, if there is no underscore
+ * /just/ the file system name. So, if there is no underscore
* in argv[0], we assume that we are being called from mount(8)
- * and that argv[0] is thus the name of the filesystem type.
+ * and that argv[0] is thus the name of the file system type.
*/
fsname = strrchr(argv[0], '_');
if (fsname) {
@@ -146,7 +146,7 @@ main(argc, argv)
/*
* Try with the old mount syscall in the case
- * this filesystem has not been converted yet,
+ * this file system has not been converted yet,
* or the user didn't recompile his kernel.
*/
if (error && (errno == EOPNOTSUPP || errno == ENOSYS || caughtsig))
OpenPOWER on IntegriCloud