summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2010-01-12 11:31:24 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2010-01-12 11:31:24 +0000
commit562d384834c5da00d2082f56c2fd19c182e78a34 (patch)
treec8dbeb8146f72e06525ef810b924465ef3426bcb
parentc8b4cbb1be7316de4c4ae132451240592764d60e (diff)
the bridge does bpf for us, so we do not need bpf.h
-rw-r--r--sys/net/if_vether.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/sys/net/if_vether.c b/sys/net/if_vether.c
index b818fa4f8db..23340831aac 100644
--- a/sys/net/if_vether.c
+++ b/sys/net/if_vether.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_vether.c,v 1.9 2010/01/12 11:29:35 deraadt Exp $ */
+/* $OpenBSD: if_vether.c,v 1.10 2010/01/12 11:31:23 deraadt Exp $ */
/*
* Copyright (c) 2009 Theo de Raadt
@@ -16,9 +16,6 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include "vether.h"
-#include "bpfilter.h"
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mbuf.h>
@@ -42,10 +39,6 @@
#include <netinet/in_var.h>
#endif
-#if NBPFILTER > 0
-#include <net/bpf.h>
-#endif
-
void vetherattach(int);
int vetherioctl(struct ifnet *, u_long, caddr_t);
void vetherstart(struct ifnet *);