diff options
author | jhb <jhb@FreeBSD.org> | 2006-12-29 16:38:22 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2006-12-29 16:38:22 +0000 |
commit | d9a83430ee7af3ac44028bb881fcd6c130654ea2 (patch) | |
tree | c64dd94c5b469fe15a7d7b507809662ce4c0a434 | |
parent | 5c315672314aa0be517f7042681d085dcc88355e (diff) | |
download | FreeBSD-src-d9a83430ee7af3ac44028bb881fcd6c130654ea2.zip FreeBSD-src-d9a83430ee7af3ac44028bb881fcd6c130654ea2.tar.gz |
Fix fat-fingering in previous commit.
Pointy hat to: jhb
-rw-r--r-- | sys/dev/en/midway.c | 2 | ||||
-rw-r--r-- | sys/dev/my/if_my.c | 2 | ||||
-rw-r--r-- | sys/dev/ppbus/if_plip.c | 2 | ||||
-rw-r--r-- | sys/i4b/driver/i4b_ipr.c | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/en/midway.c b/sys/dev/en/midway.c index 6732190..85e4a80 100644 --- a/sys/dev/en/midway.c +++ b/sys/dev/en/midway.c @@ -794,7 +794,7 @@ en_txdma(struct en_softc *sc, struct en_txslot *slot) tx.m->m_pkthdr.len = tx.datalen; } - bpf_mtap(sc->ifp, tx.m); + bpf_mtap(sc->ifp->if_bpf, tx.m); } #endif diff --git a/sys/dev/my/if_my.c b/sys/dev/my/if_my.c index 0e9d106..b17751c 100644 --- a/sys/dev/my/if_my.c +++ b/sys/dev/my/if_my.c @@ -1162,7 +1162,7 @@ my_rxeof(struct my_softc * sc) * address or the interface is in promiscuous mode. */ if (bpf_peers_present(ifp->if_bpf)) { - bpf_mtap(ifp, m); + bpf_mtap(ifp->if_bpf, m); if (ifp->if_flags & IFF_PROMISC && (bcmp(eh->ether_dhost, IF_LLADDR(sc->my_ifp), ETHER_ADDR_LEN) && diff --git a/sys/dev/ppbus/if_plip.c b/sys/dev/ppbus/if_plip.c index df59f1b..7d94eea 100644 --- a/sys/dev/ppbus/if_plip.c +++ b/sys/dev/ppbus/if_plip.c @@ -455,7 +455,7 @@ static void lptap(struct ifnet *ifp, struct mbuf *m) { u_int32_t af = AF_INET; - bpf_mtap2(ifp, &af, sizeof(af), m); + bpf_mtap2(ifp->if_bpf, &af, sizeof(af), m); } static void diff --git a/sys/i4b/driver/i4b_ipr.c b/sys/i4b/driver/i4b_ipr.c index c90e484..0d90b8a 100644 --- a/sys/i4b/driver/i4b_ipr.c +++ b/sys/i4b/driver/i4b_ipr.c @@ -891,7 +891,7 @@ error: mm.m_next = m; mm.m_len = 4; mm.m_data = (char *)⁡ - bpf_mtap(sc->sc_ifp, &mm); + bpf_mtap(sc->sc_ifp->if_bpf, &mm); } if(netisr_queue(NETISR_IP, m)) /* (0) on success. */ @@ -945,7 +945,7 @@ ipr_tx_queue_empty(int unit) mm.m_next = m; mm.m_len = 4; mm.m_data = (char *)⁡ - bpf_mtap(sc->sc_ifp, &mm); + bpf_mtap(sc->sc_ifp->if_bpf, &mm); } #if I4BIPRACCT |