mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-11 04:42:16 +01:00
Fix humanized decoding of struct stat with respect to .st_mtim
st_mtim was being incorrectly described as "stime=", not "mtime=". This was introduced with the original feature commit (r176471). MFC after: 1 week PR: 209699 Submitted by: naddy Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
parent
df5905fe7d
commit
0e80f25894
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=300428
@ -1688,7 +1688,7 @@ ktrstat(struct stat *statp)
|
||||
printf(".%09ld, ", statp->st_atim.tv_nsec);
|
||||
else
|
||||
printf(", ");
|
||||
printf("stime=");
|
||||
printf("mtime=");
|
||||
if (resolv == 0)
|
||||
printf("%jd", (intmax_t)statp->st_mtim.tv_sec);
|
||||
else {
|
||||
|
Loading…
Reference in New Issue
Block a user