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.
This commit is contained in:
parent
0e42fff3de
commit
ef00c78097
2 changed files with 3 additions and 3 deletions
|
@ -13,7 +13,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "utils/includes.h"
|
#include "utils/includes.h"
|
||||||
#include <pcap/pcap.h>
|
#include <pcap.h>
|
||||||
|
|
||||||
#include "utils/common.h"
|
#include "utils/common.h"
|
||||||
#include "wlantest.h"
|
#include "wlantest.h"
|
||||||
|
|
|
@ -13,8 +13,8 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "utils/includes.h"
|
#include "utils/includes.h"
|
||||||
#include <pcap/pcap.h>
|
#include <pcap.h>
|
||||||
#include <pcap/bpf.h>
|
#include <pcap-bpf.h>
|
||||||
|
|
||||||
#include "utils/common.h"
|
#include "utils/common.h"
|
||||||
#include "wlantest.h"
|
#include "wlantest.h"
|
||||||
|
|
Loading…
Reference in a new issue