summaryrefslogtreecommitdiff
path: root/sys/net
diff options
context:
space:
mode:
authorAlexander Yurchenko <grange@cvs.openbsd.org>2004-10-17 20:17:31 +0000
committerAlexander Yurchenko <grange@cvs.openbsd.org>2004-10-17 20:17:31 +0000
commit42af06566c02c28d0dd2e288798457774f614efe (patch)
treec8fe3beb118984e67d064bda5719acb86ed25552 /sys/net
parent3f3b4f0f2cd4fe61e0ea03c55da7ab49ca722744 (diff)
Replace ifdef NATM with if NATM > 0
ok millert@ miod@
Diffstat (limited to 'sys/net')
-rw-r--r--sys/net/netisr_dispatch.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/netisr_dispatch.h b/sys/net/netisr_dispatch.h
index 15aee38c30d..6e34c89180d 100644
--- a/sys/net/netisr_dispatch.h
+++ b/sys/net/netisr_dispatch.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: netisr_dispatch.h,v 1.5 2004/09/15 17:46:44 grange Exp $ */
+/* $OpenBSD: netisr_dispatch.h,v 1.6 2004/10/17 20:17:30 grange Exp $ */
/* $NetBSD: netisr_dispatch.h,v 1.2 2000/07/02 04:40:47 cgd Exp $ */
/*
@@ -56,7 +56,7 @@
#ifdef CCITT
DONETISR(NETISR_CCITT,ccittintr);
#endif
-#ifdef NATM
+#if NATM > 0
DONETISR(NETISR_NATM,natmintr);
#endif
#if NPPP > 0