diff options
author | trhodes <trhodes@FreeBSD.org> | 2002-05-16 21:28:32 +0000 |
---|---|---|
committer | trhodes <trhodes@FreeBSD.org> | 2002-05-16 21:28:32 +0000 |
commit | 28d42899b766c395e5a6476f5bfa88b1481a08c0 (patch) | |
tree | 0cbeb3775d12e86712b373b6e5a62d8ee7b3abc8 /sys/fs/ntfs | |
parent | b459f6c72649c5aa0ae116e177e7fb6f302b20ff (diff) | |
download | FreeBSD-src-28d42899b766c395e5a6476f5bfa88b1481a08c0.zip FreeBSD-src-28d42899b766c395e5a6476f5bfa88b1481a08c0.tar.gz |
More s/file system/filesystem/g
Diffstat (limited to 'sys/fs/ntfs')
-rw-r--r-- | sys/fs/ntfs/ntfs_vfsops.c | 4 | ||||
-rw-r--r-- | sys/fs/ntfs/ntfs_vnops.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/fs/ntfs/ntfs_vfsops.c b/sys/fs/ntfs/ntfs_vfsops.c index 5eaa02f..82e1158 100644 --- a/sys/fs/ntfs/ntfs_vfsops.c +++ b/sys/fs/ntfs/ntfs_vfsops.c @@ -114,7 +114,7 @@ ntfs_mount ( if( path == NULL) { /* *** - * Mounting root file system + * Mounting root filesystem *** */ @@ -141,7 +141,7 @@ ntfs_mount ( /* *** - * Mounting non-root file system or updating a file system + * Mounting non-root filesystem or updating a filesystem *** */ diff --git a/sys/fs/ntfs/ntfs_vnops.c b/sys/fs/ntfs/ntfs_vnops.c index f9e09e8..52e24c6 100644 --- a/sys/fs/ntfs/ntfs_vnops.c +++ b/sys/fs/ntfs/ntfs_vnops.c @@ -370,9 +370,9 @@ ntfs_access(ap) dprintf(("ntfs_access: %d\n",ip->i_number)); /* - * Disallow write attempts on read-only file systems; + * Disallow write attempts on read-only filesystems; * unless the file is a socket, fifo, or a block or - * character device resident on the file system. + * character device resident on the filesystem. */ if (mode & VWRITE) { switch ((int)vp->v_type) { |