summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2010-01-12 11:31:23 +0000
committerderaadt <deraadt@openbsd.org>2010-01-12 11:31:23 +0000
commit47198a4aab22f0eca7b91d2984a43ba96469b953 (patch)
treeec42dd4879250da7ad0f49c426703843f9cdceae
parentdelete the unused debug macros (diff)
downloadwireguard-openbsd-47198a4aab22f0eca7b91d2984a43ba96469b953.tar.xz
wireguard-openbsd-47198a4aab22f0eca7b91d2984a43ba96469b953.zip
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 *);