diff options
| -rw-r--r-- | man2/mount.2 | 4 | ||||
| -rw-r--r-- | man2/stat.2 | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/man2/mount.2 b/man2/mount.2 index e309256352..3db7a8fd89 100644 --- a/man2/mount.2 +++ b/man2/mount.2 @@ -165,8 +165,8 @@ Mount file system read-only. .TP .BR MS_RELATIME " (Since Linux 2.6.20)" When a file on this file system is accessed, -only update the file's last accessed time (atime) if the current value -of atime is less than or equal to the file's last modified (mtime) +only update the file's last access time (atime) if the current value +of atime is less than or equal to the file's last modification (mtime) or last status change time (ctime). This option is useful for programs, such as .BR mutt (1), diff --git a/man2/stat.2 b/man2/stat.2 index c921253923..6a0f147b2e 100644 --- a/man2/stat.2 +++ b/man2/stat.2 @@ -542,7 +542,7 @@ main(int argc, char *argv[]) printf("Blocks allocated: %lld\\n", (long long) sb.st_blocks); - printf("Last inode change: %s", ctime(&sb.st_ctime)); + printf("Last status change: %s", ctime(&sb.st_ctime)); printf("Last file access: %s", ctime(&sb.st_atime)); printf("Last file modification: %s", ctime(&sb.st_mtime)); |
