diff options
author | 2014-07-09 11:39:07 +0000 | |
---|---|---|
committer | 2014-07-09 11:39:07 +0000 | |
commit | 21c20f58829c2c0890058fa04577bffb1d2d7c6a (patch) | |
tree | bbefb76b9ccf1aa56d0d821d770f03213e639379 | |
parent | Fixes a hibernate issue wherein we locked the kernel lock while hatching (diff) | |
download | wireguard-openbsd-21c20f58829c2c0890058fa04577bffb1d2d7c6a.tar.xz wireguard-openbsd-21c20f58829c2c0890058fa04577bffb1d2d7c6a.zip |
Herr Reyk correctly pointed out that we don't need the if_pflog.h include
here any more
-rw-r--r-- | sys/net/bpf.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/net/bpf.c b/sys/net/bpf.c index 7bec98f182c..6245e594b0f 100644 --- a/sys/net/bpf.c +++ b/sys/net/bpf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bpf.c,v 1.95 2014/07/09 11:03:04 henning Exp $ */ +/* $OpenBSD: bpf.c,v 1.96 2014/07/09 11:39:07 henning Exp $ */ /* $NetBSD: bpf.c,v 1.33 1997/02/21 23:59:35 thorpej Exp $ */ /* @@ -64,11 +64,6 @@ #include <net/if_vlan_var.h> #endif -#include "pflog.h" -#if NPFLOG > 0 -#include <net/if_pflog.h> -#endif - #define BPF_BUFSIZE 32768 #define PRINET 26 /* interruptible */ |