summaryrefslogtreecommitdiffstats
path: root/sys/pc98/pc98/if_ed.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/pc98/pc98/if_ed.c')
-rw-r--r--sys/pc98/pc98/if_ed.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/pc98/pc98/if_ed.c b/sys/pc98/pc98/if_ed.c
index 56471fa..0575ede 100644
--- a/sys/pc98/pc98/if_ed.c
+++ b/sys/pc98/pc98/if_ed.c
@@ -24,7 +24,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: if_ed.c,v 1.62 1999/04/18 14:42:17 kato Exp $
+ * $Id: if_ed.c,v 1.63 1999/05/10 09:06:12 kato Exp $
*/
/*
@@ -60,7 +60,7 @@
*/
#include "ed.h"
-#include "bpfilter.h"
+#include "bpf.h"
#include "pnp.h"
#ifndef EXTRA_ED
@@ -87,7 +87,7 @@
#include <net/if_dl.h>
#include <net/if_mib.h>
-#if NBPFILTER > 0
+#if NBPF > 0
#include <net/bpf.h>
#endif
#include "opt_bdg.h"
@@ -2463,7 +2463,7 @@ ed_attach(sc, unit, flags)
/*
* If BPF is in the kernel, call the attach for it
*/
-#if NBPFILTER > 0
+#if NBPF > 0
bpfattach(ifp, DLT_EN10MB, sizeof(struct ether_header));
#endif
return 1;
@@ -2929,7 +2929,7 @@ outloop:
/*
* Tap off here if there is a bpf listener.
*/
-#if NBPFILTER > 0
+#if NBPF > 0
if (ifp->if_bpf) {
bpf_mtap(ifp, m0);
}
@@ -3371,7 +3371,7 @@ ed_ioctl(ifp, command, data)
}
}
-#if NBPFILTER > 0
+#if NBPF > 0
/*
* Promiscuous flag may have changed, so reprogram the RCR.
@@ -3502,7 +3502,7 @@ ed_get_packet(sc, buf, len, multicast)
struct ifnet *ifp ;
int need_more = 1 ; /* in case not bpf */
-#if NBPFILTER > 0
+#if NBPF > 0
if (sc->arpcom.ac_if.if_bpf) {
need_more = 0 ;
ed_ring_copy(sc, buf, (char *)eh, len);
@@ -3533,7 +3533,7 @@ ed_get_packet(sc, buf, len, multicast)
*/
ed_ring_copy(sc, buf, (char *)eh, len);
-#if NBPFILTER > 0
+#if NBPF > 0
/*
* Check if there's a BPF listener on this interface. If so, hand off
OpenPOWER on IntegriCloud