From 90455566ee9463f4984c779606724e95126988a9 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Mon, 30 Mar 1998 10:10:29 +0000 Subject: [PATCH] Pickup _time_second instead of _time --- sbin/savecore/savecore.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" },