summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-02-07 08:04:11 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-02-07 08:04:11 +0000
commitdc1ea7ffc221b8cfcb5a86966a006d1b784eb51b (patch)
tree9023a55f5e4e5fc5af8344742cbc89e763feaf69
parentd103172a5e430a3648b55e07cce42cbbebe9ca53 (diff)
Untested changes SUCK
-rw-r--r--sys/ddb/db_aout.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/ddb/db_aout.c b/sys/ddb/db_aout.c
index ae376acb46d..320f3327c08 100644
--- a/sys/ddb/db_aout.c
+++ b/sys/ddb/db_aout.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_aout.c,v 1.13 1997/02/07 07:03:38 mickey Exp $ */
+/* $OpenBSD: db_aout.c,v 1.14 1997/02/07 08:04:10 deraadt Exp $ */
/* $NetBSD: db_aout.c,v 1.14 1996/02/27 20:54:43 gwr Exp $ */
/*
@@ -357,12 +357,16 @@ X_db_stub_xh(sym, xh)
db_symtab_t sym;
struct exec *xh;
{
+#if 0
extern char kernel_text[];
+#endif
bzero(xh, sizeof(*xh));
xh->a_midmag = htonl((((0 << 10) | MID_ZERO) << 16) | ZMAGIC);
xh->a_syms = *sym->private;
+#if 0
xh->a_entry = (u_long)kernel_text;
+#endif
}
/*