diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-12-19 10:59:22 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-12-19 10:59:22 +0000 |
commit | 8443392599ecbb346aa59f146e5bf46f8c8f7c42 (patch) | |
tree | a333725f1b65f330cbb5da716384d88426acac3e | |
parent | 01c0933c71d385e9daf72ba6f42936f257d85edb (diff) |
treat only ether II type packets for ipx.
-rw-r--r-- | sys/net/if_ethersubr.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/net/if_ethersubr.c b/sys/net/if_ethersubr.c index 4a6e835bdd2..928330183a8 100644 --- a/sys/net/if_ethersubr.c +++ b/sys/net/if_ethersubr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ethersubr.c,v 1.13 1996/06/02 16:31:01 niklas Exp $ */ +/* $OpenBSD: if_ethersubr.c,v 1.14 1996/12/19 10:59:21 mickey Exp $ */ /* $NetBSD: if_ethersubr.c,v 1.19 1996/05/07 02:40:30 thorpej Exp $ */ /* @@ -431,10 +431,6 @@ ether_input(ifp, eh, m) return; #endif #ifdef IPX - case ETHERTYPE_8022: - case ETHERTYPE_8022TR: - case ETHERTYPE_8023: - case ETHERTYPE_SNAP: case ETHERTYPE_II: schednetisr(NETISR_IPX); inq = &ipxintrq; |