diff options
author | Jason Wright <jason@cvs.openbsd.org> | 1999-02-26 17:05:56 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 1999-02-26 17:05:56 +0000 |
commit | 2acc654aba54712531d8185598afc25f1d2877f0 (patch) | |
tree | 3ef0f9f334c6faa981fe8b850f24016c107af1de /sys/dev/pci/if_xl.c | |
parent | 842ed679f15acf3904a23c6859a05c53e4ebb9cc (diff) |
compensate for the fact that the check for ownership of a unicast packet
has moved to ether_input()
Diffstat (limited to 'sys/dev/pci/if_xl.c')
-rw-r--r-- | sys/dev/pci/if_xl.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/sys/dev/pci/if_xl.c b/sys/dev/pci/if_xl.c index 55d54100b65..42ed9b7034e 100644 --- a/sys/dev/pci/if_xl.c +++ b/sys/dev/pci/if_xl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_xl.c,v 1.19 1999/02/23 21:06:06 jason Exp $ */ +/* $OpenBSD: if_xl.c,v 1.20 1999/02/26 17:05:55 jason Exp $ */ /* * Copyright (c) 1997, 1998 @@ -1965,13 +1965,6 @@ again: #else bpf_mtap(ifp->if_bpf, m); #endif - if (ifp->if_flags & IFF_PROMISC && - (bcmp(eh->ether_dhost, sc->arpcom.ac_enaddr, - ETHER_ADDR_LEN) && - (eh->ether_dhost[0] & 1) == 0)) { - m_freem(m); - continue; - } } #endif /* Remove header from mbuf and pass it on. */ |