diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2000-02-13 03:32:07 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2000-02-13 03:32:07 +0000 |
| commit | 242c5536ea8a69496ed4827a9908505b8eaf52da (patch) | |
| tree | a31aa86acc3b4c619d5f6919749b971bfe1833bc /sys/netipx | |
| parent | 84a5b015049ed8f12d326801575b6bd2a7a4973b (diff) | |
Notes
Diffstat (limited to 'sys/netipx')
| -rw-r--r-- | sys/netipx/ipx_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netipx/ipx_input.c b/sys/netipx/ipx_input.c index 7494912b16f66..db6025d33d4bd 100644 --- a/sys/netipx/ipx_input.c +++ b/sys/netipx/ipx_input.c @@ -92,8 +92,6 @@ static int ipxqmaxlen = IFQ_MAXLEN; long ipx_pexseq; const int ipxintrq_present = 1; -NETISR_SET(NETISR_IPX, ipxintr); - static int ipx_do_route(struct ipx_addr *src, struct route *ro); static void ipx_undo_route(struct route *ro); static void ipx_forward(struct mbuf *m); @@ -119,6 +117,8 @@ ipx_init() ipx_hostmask.sipx_len = 12; ipx_hostmask.sipx_addr.x_net = ipx_broadnet; ipx_hostmask.sipx_addr.x_host = ipx_broadhost; + + register_netisr(NETISR_IPX, ipxintr); } /* |
