diff options
author | Jouni Malinen <j@w1.fi> | 2010-12-17 08:06:52 +0200 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2010-12-17 08:06:52 +0200 |
commit | ef00c78097315b51cea46421ae6e0c98e992c21c (patch) | |
tree | 51c78c27a08d1a1233f896316337387e70be85df /wlantest | |
parent | 0e42fff3de28cfd458319e73f2c18555a37b097a (diff) | |
download | external_wpa_supplicant_8_ti-ef00c78097315b51cea46421ae6e0c98e992c21c.zip external_wpa_supplicant_8_ti-ef00c78097315b51cea46421ae6e0c98e992c21c.tar.gz external_wpa_supplicant_8_ti-ef00c78097315b51cea46421ae6e0c98e992c21c.tar.bz2 |
wlantest: Replace pcap header directory
The use of the pcap subdirectory seems to be limited to some of the
newer Linux distros only, so use the older paths to pcap.h and
pcap-bpf.h to make wlantest bit more easier to compile on older
systems.
Diffstat (limited to 'wlantest')
-rw-r--r-- | wlantest/readpcap.c | 2 | ||||
-rw-r--r-- | wlantest/writepcap.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/wlantest/readpcap.c b/wlantest/readpcap.c index f2f6e92..fd8b1e8 100644 --- a/wlantest/readpcap.c +++ b/wlantest/readpcap.c @@ -13,7 +13,7 @@ */ #include "utils/includes.h" -#include <pcap/pcap.h> +#include <pcap.h> #include "utils/common.h" #include "wlantest.h" diff --git a/wlantest/writepcap.c b/wlantest/writepcap.c index 75904a6..b59a1c2 100644 --- a/wlantest/writepcap.c +++ b/wlantest/writepcap.c @@ -13,8 +13,8 @@ */ #include "utils/includes.h" -#include <pcap/pcap.h> -#include <pcap/bpf.h> +#include <pcap.h> +#include <pcap-bpf.h> #include "utils/common.h" #include "wlantest.h" |