Minor wording change

This commit is contained in:
Michael Kerrisk 2008-03-18 14:11:57 +00:00
parent 366a09d51b
commit 6982cdd87c
2 changed files with 3 additions and 3 deletions

View File

@ -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),

View File

@ -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));