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 {
_______________________________________________
svn-src-stable-10@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to "svn-src-stable-10-unsubscr...@freebsd.org"

Reply via email to