From 4dddc4384ccfb9b32ae77dd1c02d5036fe77658a Mon Sep 17 00:00:00 2001 From: ngie Date: Wed, 8 Jun 2016 13:45:02 +0000 Subject: [PATCH] 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 git-svn-id: svn://svn.freebsd.org/base/stable/9@301618 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 85950e905..e09492bc9 100644 --- a/usr.bin/kdump/kdump.c +++ b/usr.bin/kdump/kdump.c @@ -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 { -- 2.45.0