summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cmds/dumpstate/dumpstate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/dumpstate/dumpstate.c b/cmds/dumpstate/dumpstate.c
index c60045c..1f14726 100644
--- a/cmds/dumpstate/dumpstate.c
+++ b/cmds/dumpstate/dumpstate.c
@@ -340,7 +340,7 @@ static void dump_kernel_log(const char *path, const char *title)
if (stat(path, &sbuf) < 0)
printf("%s: stat failed (%s)\n", path, strerror(errno));
else
- printf("Harvested %s", ctime(&sbuf.st_ctime));
+ printf("Harvested %s", ctime(&sbuf.st_mtime));
DUMP(path);
}