am 7b16834a: Merge change Iaf686344 into eclair

Merge commit '7b16834adc1003f492cd2be4b1bcc3fb73a78c23' into eclair-mr2

* commit '7b16834adc1003f492cd2be4b1bcc3fb73a78c23':
  dumpstate: Display mtime instead of ctime
This commit is contained in:
San Mehat
2009-10-04 15:19:27 -07:00
committed by Android Git Automerger

View File

@@ -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);
}