From d0153a96fe8e6ae41b26431da0691ed59bba8a8e Mon Sep 17 00:00:00 2001 From: rvb Date: Thu, 13 Aug 1998 18:00:05 +0000 Subject: [PATCH] The sense of the pccons_is_console test is backwards --- sys/arch/i386/isa/pccons.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arch/i386/isa/pccons.c b/sys/arch/i386/isa/pccons.c index e3412d8ea0c8..908bfed8f587 100644 --- a/sys/arch/i386/isa/pccons.c +++ b/sys/arch/i386/isa/pccons.c @@ -1,4 +1,4 @@ -/* $NetBSD: pccons.c,v 1.129 1998/08/05 02:28:27 perry Exp $ */ +/* $NetBSD: pccons.c,v 1.130 1998/08/13 18:00:05 rvb Exp $ */ /*- * Copyright (c) 1993, 1994, 1995 Charles Hannum. All rights reserved. @@ -2362,7 +2362,7 @@ strans(dt) if (pc_xmode > 0) { #if defined(DDB) && defined(XSERVER_DDB) /* F12 enters the debugger while in X mode */ - if ((dt == 88) && pccons_is_console) + if ((dt == 88) && !pccons_is_console) Debugger(); #endif capchar[0] = dt;