summaryrefslogtreecommitdiff
path: root/sbin/savecore/savecore.c
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>2004-07-02 13:09:05 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>2004-07-02 13:09:05 +0000
commit806bc65972c0c7af114b306e5c0da7afdf49fd14 (patch)
tree03fa6b4f9ce1d410916730a3303b9b1a11b3c44d /sbin/savecore/savecore.c
parent453f7788e69a20e515867c62e607863ad905ba41 (diff)
Use "time_second" instead of "time" now that time handling in the kernel
has changed. ok art@ millert@ marc@
Diffstat (limited to 'sbin/savecore/savecore.c')
-rw-r--r--sbin/savecore/savecore.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/savecore/savecore.c b/sbin/savecore/savecore.c
index 4c5e71ca507..c9e155dd45b 100644
--- a/sbin/savecore/savecore.c
+++ b/sbin/savecore/savecore.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: savecore.c,v 1.39 2004/01/13 21:03:34 otto Exp $ */
+/* $OpenBSD: savecore.c,v 1.40 2004/07/02 13:09:04 tholo Exp $ */
/* $NetBSD: savecore.c,v 1.26 1996/03/18 21:16:05 leo Exp $ */
/*-
@@ -40,7 +40,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)savecore.c 8.3 (Berkeley) 1/2/94";
#else
-static char rcsid[] = "$OpenBSD: savecore.c,v 1.39 2004/01/13 21:03:34 otto Exp $";
+static char rcsid[] = "$OpenBSD: savecore.c,v 1.40 2004/07/02 13:09:04 tholo Exp $";
#endif
#endif /* not lint */
@@ -77,7 +77,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
@@ -94,7 +94,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" },