summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2008-03-30 14:09:21 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2008-03-30 14:09:21 +0000
commit3e8c0808f0329093948850542391f750c40e0818 (patch)
tree15ff11c1e187aeace1e1fb9f5dc2a4ab1a020861
parent1995fc4054f7986a6550f5f144b1628736e45727 (diff)
Fix #ifdef NCOM collateral damage introduced in r1.210.
ok miod@ kettenis@
-rw-r--r--sys/arch/i386/i386/machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c
index 9cf9207dddc..c1bc2bb62ef 100644
--- a/sys/arch/i386/i386/machdep.c
+++ b/sys/arch/i386/i386/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.419 2008/03/17 23:17:22 deraadt Exp $ */
+/* $OpenBSD: machdep.c,v 1.420 2008/03/30 14:09:20 krw Exp $ */
/* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */
/*-
@@ -165,7 +165,7 @@ extern struct proc *npxproc;
#include "com.h"
#include "pccom.h"
-#if NPCCOM > 0
+#if (NCOM > 0 || NPCCOM > 0)
#include <sys/termios.h>
#include <dev/ic/comreg.h>
#if NCOM > 0