1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-27 12:14:26 +01:00

Fixed compilation error in OSX caused by including pcap/bpf.h instead of pcap.h in src/ppi.cpp.

This commit is contained in:
Matias Fontanini
2014-01-25 18:45:55 -03:00
parent 0a2f3b477b
commit 75c6bb46dc

View File

@@ -32,7 +32,7 @@
#endif // TINS_DEBUG
#include <algorithm>
#include <cstring>
#include <pcap/bpf.h>
#include <pcap.h>
#include "dot11/dot11_base.h"
#include "dot3.h"
#include "ethernetII.h"