From ff76332c491cdce6f772650645eb5641625596df Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Sat, 29 Jan 2000 16:13:08 +0000 Subject: [PATCH] Fix this so LINT compiles. There is no way this could have worked if tested with LINT. I've put back netatm/kern_include.h and maked it with a fixme!, otherwise NETISR_ATM isn't defined as ATM_KERNEL isn't defined. Defining that exposes a whole bunch of other dependencies.. :-( --- sys/net/intrq.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sys/net/intrq.c b/sys/net/intrq.c index b2d625965cb..863b6c3aa03 100644 --- a/sys/net/intrq.c +++ b/sys/net/intrq.c @@ -38,7 +38,7 @@ #include #ifdef __i386__ -#include +#include /* XXX overkill, fixme! */ #endif /* @@ -58,10 +58,10 @@ const int ipxintrq_present; const int natmintrq_present; const int nsintrq_present; -struct ifqueue at1intrq; -struct ifqueue at2intrq; +struct ifqueue atintrq1; +struct ifqueue atintrq2; #ifdef NETISR_ATM -struct ifqueue atmintrq; +struct ifqueue atm_intrq; #endif struct ifqueue ipintrq; struct ifqueue ip6intrq; @@ -83,7 +83,7 @@ static const struct { { AF_INET6, &ip6intrq, &ip6intrq_present, NETISR_IPV6 }, { AF_IPX, &ipxintrq, &ipxintrq_present, NETISR_IPX }, { AF_NATM, &natmintrq, &natmintrq_present, NETISR_NATM }, - { AF_APPLETALK, &at2intrq, &atintrq2_present, NETISR_ATALK }, + { AF_APPLETALK, &atintrq2, &atintrq2_present, NETISR_ATALK }, { AF_NS, &nsintrq, &nsintrq_present, NETISR_NS } };