diff options
Diffstat (limited to 'sbin/mount_std/mount_std.c')
-rw-r--r-- | sbin/mount_std/mount_std.c | 6 |
1 files changed, 3 insertions, 3 deletions
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)) |