aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ctau
diff options
context:
space:
mode:
authorAlexander V. Chernikov <melifaro@FreeBSD.org>2014-09-28 19:05:22 +0000
committerAlexander V. Chernikov <melifaro@FreeBSD.org>2014-09-28 19:05:22 +0000
commitc6682d59068eb7d59c06f82468655cd4bbeb9133 (patch)
treee4909fbdd34263e4844e31d151f591336d51f6a0 /sys/dev/ctau
parent03f90784bf93e340f15c88423dd926de57da8b39 (diff)
downloadsrc-c6682d59068eb7d59c06f82468655cd4bbeb9133.tar.gz
src-c6682d59068eb7d59c06f82468655cd4bbeb9133.zip
Convert most BPF_TAP users to BPF_MTAP.
MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=272266
Diffstat (limited to 'sys/dev/ctau')
-rw-r--r--sys/dev/ctau/if_ct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ctau/if_ct.c b/sys/dev/ctau/if_ct.c
index 5cf20ddf55e2..397c3ac49b25 100644
--- a/sys/dev/ctau/if_ct.c
+++ b/sys/dev/ctau/if_ct.c
@@ -1120,7 +1120,7 @@ static void ct_receive (ct_chan_t *c, char *data, int len)
m->m_pkthdr.rcvif = d->ifp;
/* Check if there's a BPF listener on this interface.
* If so, hand off the raw packet to bpf. */
- BPF_TAP (d->ifp, data, len);
+ BPF_MTAP(d->ifp, m);
IF_ENQUEUE (&d->queue, m);
#endif
}