svn commit: r301617 - stable/10/usr.bin/kdump
Garrett Cooper
ngie at FreeBSD.org
Wed Jun 8 13:44:02 UTC 2016
Author: ngie
Date: Wed Jun 8 13:44:01 2016
New Revision: 301617
URL: https://svnweb.freebsd.org/changeset/base/301617
Log:
MFC r300428:
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).
PR: 209699
Modified:
stable/10/usr.bin/kdump/kdump.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/usr.bin/kdump/kdump.c
==============================================================================
--- stable/10/usr.bin/kdump/kdump.c Wed Jun 8 13:41:51 2016 (r301616)
+++ stable/10/usr.bin/kdump/kdump.c Wed Jun 8 13:44:01 2016 (r301617)
@@ -1750,7 +1750,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 {
More information about the svn-src-stable-10
mailing list