don't see NBPFILTER.

This commit is contained in:
Hajimu UMEMOTO 2005-01-11 07:17:33 +00:00
parent 2d106a00c9
commit 529ed56f83

View File

@ -488,7 +488,6 @@ stf_output(ifp, m, dst, rt)
}
bcopy(ptr, &in4, sizeof(in4));
#if NBPFILTER > 0
if (ifp->if_bpf) {
/*
* We need to prepend the address family as
@ -500,7 +499,6 @@ stf_output(ifp, m, dst, rt)
u_int32_t af = AF_INET6;
bpf_mtap2(ifp->if_bpf, &af, sizeof(af), m);
}
#endif /*NBPFILTER > 0*/
M_PREPEND(m, sizeof(struct ip), M_DONTWAIT);
if (m && m->m_len < sizeof(struct ip))