aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/vfs_lookup.c
diff options
context:
space:
mode:
authorTom Rhodes <trhodes@FreeBSD.org>2002-05-16 21:28:32 +0000
committerTom Rhodes <trhodes@FreeBSD.org>2002-05-16 21:28:32 +0000
commitd394511de3304005a8a52e0cbb6dd48fe8b1d3a4 (patch)
tree0cbeb3775d12e86712b373b6e5a62d8ee7b3abc8 /sys/kern/vfs_lookup.c
parent2bf6dd18ba2f6fc4830854b9f5d3d79dcffc106d (diff)
downloadsrc-d394511de3304005a8a52e0cbb6dd48fe8b1d3a4.tar.gz
src-d394511de3304005a8a52e0cbb6dd48fe8b1d3a4.zip
Notes
Diffstat (limited to 'sys/kern/vfs_lookup.c')
-rw-r--r--sys/kern/vfs_lookup.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/vfs_lookup.c b/sys/kern/vfs_lookup.c
index f2d284ccb0ef..bb589831e139 100644
--- a/sys/kern/vfs_lookup.c
+++ b/sys/kern/vfs_lookup.c
@@ -411,7 +411,7 @@ dirloop:
* 2. If this vnode is the root of a mounted
* filesystem, then replace it with the
* vnode which was mounted on so we take the
- * .. in the other file system.
+ * .. in the other filesystem.
* 3. If the vnode is the top directory of
* the jail or chroot, don't let them out.
*/
@@ -514,7 +514,7 @@ unionlookup:
/*
* Check to see if the vnode has been mounted on;
- * if so find the root of the mounted file system.
+ * if so find the root of the mounted filesystem.
*/
while (dp->v_type == VDIR && (mp = dp->v_mountedhere) &&
(cnp->cn_flags & NOCROSSMOUNT) == 0) {
@@ -576,7 +576,7 @@ nextname:
goto dirloop;
}
/*
- * Disallow directory write attempts on read-only file systems.
+ * Disallow directory write attempts on read-only filesystems.
*/
if (rdonly &&
(cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME)) {
@@ -718,7 +718,7 @@ relookup(dvp, vpp, cnp)
("relookup: symlink found.\n"));
/*
- * Disallow directory write attempts on read-only file systems.
+ * Disallow directory write attempts on read-only filesystems.
*/
if (rdonly &&
(cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME)) {