summaryrefslogtreecommitdiff
path: root/sys/arch/i386/isa
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1998-02-22 13:03:01 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1998-02-22 13:03:01 +0000
commit54559b92fcaae49aaded0f2424ac7c8fc4342e1b (patch)
treefebdff68746bc8cfb8f5b33999d1222f6afb7f30 /sys/arch/i386/isa
parent9b34759d48730e6b2c7ee7ea343a5fb882a39909 (diff)
fix db_console chunk of code properly
Diffstat (limited to 'sys/arch/i386/isa')
-rw-r--r--sys/arch/i386/isa/pccons.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/isa/pccons.c b/sys/arch/i386/isa/pccons.c
index c57ba857ee6..5b9885c4744 100644
--- a/sys/arch/i386/isa/pccons.c
+++ b/sys/arch/i386/isa/pccons.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pccons.c,v 1.38 1998/02/22 13:02:26 deraadt Exp $ */
+/* $OpenBSD: pccons.c,v 1.39 1998/02/22 13:03:00 deraadt Exp $ */
/* $NetBSD: pccons.c,v 1.99.4.1 1996/06/04 20:03:53 cgd Exp $ */
/*-
@@ -1681,7 +1681,7 @@ top:
if (pc_xmode > 0) {
#if defined(DDB) && defined(XSERVER_DDB)
/* F12 enters the debugger while in X mode */
- if (dt == 88 && db_console)
+ if (dt == 88)
if (db_console)
Debugger();
#endif