diff options
| author | Sam Leffler <sam@FreeBSD.org> | 2003-06-25 17:42:36 +0000 |
|---|---|---|
| committer | Sam Leffler <sam@FreeBSD.org> | 2003-06-25 17:42:36 +0000 |
| commit | 1300bbb70e67f7f24db45a63d211d475946c1f8a (patch) | |
| tree | df23432724d1ddbbcf34610301a02fba65c92fd5 | |
| parent | 5c133dfa0ea0703af05aed5198e8e065bcc82b21 (diff) | |
Notes
| -rw-r--r-- | sys/net80211/ieee80211_input.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sys/net80211/ieee80211_input.c b/sys/net80211/ieee80211_input.c index d232c94efa0c..98009b4fa167 100644 --- a/sys/net80211/ieee80211_input.c +++ b/sys/net80211/ieee80211_input.c @@ -227,10 +227,8 @@ ieee80211_input(struct ifnet *ifp, struct mbuf *m, goto out; } /* copy to listener after decrypt */ -#if NBPFILTER > 0 if (ic->ic_rawbpf) bpf_mtap(ic->ic_rawbpf, m); -#endif m = ieee80211_decap(ifp, m); if (m == NULL) goto err; @@ -317,10 +315,8 @@ ieee80211_input(struct ifnet *ifp, struct mbuf *m, >> IEEE80211_FC0_SUBTYPE_SHIFT], ether_sprintf(wh->i_addr2), rssi); } -#if NBPFILTER > 0 if (ic->ic_rawbpf) bpf_mtap(ic->ic_rawbpf, m); -#endif (*ic->ic_recv_mgmt)(ic, m, subtype, rssi, rstamp, rantenna); m_freem(m); return; @@ -335,10 +331,8 @@ ieee80211_input(struct ifnet *ifp, struct mbuf *m, ifp->if_ierrors++; out: if (m != NULL) { -#if NBPFILTER > 0 if (ic->ic_rawbpf) bpf_mtap(ic->ic_rawbpf, m); -#endif m_freem(m); } } |
