aboutsummaryrefslogtreecommitdiff
path: root/sys/security/lomac
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/security/lomac
parent2bf6dd18ba2f6fc4830854b9f5d3d79dcffc106d (diff)
Notes
Diffstat (limited to 'sys/security/lomac')
-rw-r--r--sys/security/lomac/kernel_util.c6
-rw-r--r--sys/security/lomac/lomacfs_vnops.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/security/lomac/kernel_util.c b/sys/security/lomac/kernel_util.c
index 99cd6cbd2d8a5..4a4999d82a641 100644
--- a/sys/security/lomac/kernel_util.c
+++ b/sys/security/lomac/kernel_util.c
@@ -292,7 +292,7 @@ sysarch(struct thread *td, struct sysarch_args *uap) {
extern int lomac_mmap(struct proc *, struct mmap_args *);
/*
- * Mount a file system.
+ * Mount a filesystem.
*/
#ifndef _SYS_SYSPROTO_H_
struct mount_args {
@@ -344,7 +344,7 @@ finish:
}
/*
- * Unmount a file system.
+ * Unmount a filesystem.
*
* Note: unmount takes a path to the vnode mounted on as argument,
* not special file (as before).
@@ -390,7 +390,7 @@ unmount(td, uap)
}
/*
- * Don't allow unmounting the root file system.
+ * Don't allow unmounting the root filesystem.
*/
if (mp->mnt_flag & MNT_ROOTFS) {
vput(vp);
diff --git a/sys/security/lomac/lomacfs_vnops.c b/sys/security/lomac/lomacfs_vnops.c
index 430da86eddb28..28e9a2602bcd2 100644
--- a/sys/security/lomac/lomacfs_vnops.c
+++ b/sys/security/lomac/lomacfs_vnops.c
@@ -344,7 +344,7 @@ lomacfs_cachedlookup(
/*
* 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.
*/
if (lvp->v_type == VDIR && (mp = lvp->v_mountedhere) &&
(cnp->cn_flags & NOCROSSMOUNT) == 0) {