summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1998-03-30 10:10:29 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1998-03-30 10:10:29 +0000
commit90455566ee9463f4984c779606724e95126988a9 (patch)
treea6ba018171ddbca9871cdd2da73e71af9ae0dfb3
parentc8e2201fa209d6433af3309e64b36cc61c64f198 (diff)
Notes
-rw-r--r--sbin/savecore/savecore.c4
1 files 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" },