diff --git a/sbin/savecore/savecore.c b/sbin/savecore/savecore.c index d78a55a478e6..2be0674824b7 100644 --- a/sbin/savecore/savecore.c +++ b/sbin/savecore/savecore.c @@ -70,7 +70,7 @@ struct nlist current_nl[] = { /* Namelist for currently running system. */ #define X_DUMPLO 1 { "_dumplo" }, #define X_TIME 2 - { "_time" }, + { "_time_second" }, #define X_DUMPSIZE 3 { "_dumpsize" }, #define X_VERSION 4 @@ -87,7 +87,7 @@ int dumpsyms[] = { X_TIME, X_DUMPSIZE, X_VERSION, X_PANICSTR, X_DUMPMAG, -1 }; struct nlist dump_nl[] = { /* Name list for dumped system. */ { "_dumpdev" }, /* Entries MUST be the same as */ { "_dumplo" }, /* those in current_nl[]. */ - { "_time" }, + { "_time_second" }, { "_dumpsize" }, { "_version" }, { "_panicstr" },