From 7019ec27a9d17e6a66a0d01ae221cdef21e798be Mon Sep 17 00:00:00 2001 From: ngie Date: Wed, 8 Jun 2016 13:44:01 +0000 Subject: [PATCH] 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 git-svn-id: svn://svn.freebsd.org/base/stable/10@301617 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- usr.bin/kdump/kdump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/kdump/kdump.c b/usr.bin/kdump/kdump.c index f028e5159..f7d7bbabc 100644 --- a/usr.bin/kdump/kdump.c +++ b/usr.bin/kdump/kdump.c @@ -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 { -- 2.45.0