svn commit: r301618 - stable/9/usr.bin/kdump
Garrett Cooper
ngie at FreeBSD.org
Wed Jun 8 13:45:03 UTC 2016
Author: ngie
Date: Wed Jun 8 13:45:02 2016
New Revision: 301618
URL: https://svnweb.freebsd.org/changeset/base/301618
Log:
MFstable/10 r301617:
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/9/usr.bin/kdump/kdump.c
Directory Properties:
stable/9/ (props changed)
stable/9/usr.bin/ (props changed)
stable/9/usr.bin/kdump/ (props changed)
Modified: stable/9/usr.bin/kdump/kdump.c
==============================================================================
--- stable/9/usr.bin/kdump/kdump.c Wed Jun 8 13:44:01 2016 (r301617)
+++ stable/9/usr.bin/kdump/kdump.c Wed Jun 8 13:45:02 2016 (r301618)
@@ -1561,7 +1561,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-9
mailing list