diff options
author | pdw <> | 2011-10-03 20:44:33 +0000 |
---|---|---|
committer | pdw <> | 2011-10-03 20:44:33 +0000 |
commit | c387bd743093d0b8ae83cfb7c442a5351dd27094 (patch) | |
tree | 3de9ef00a35744aa4801aede55f445afd7720f92 | |
parent | 06458b6deb40a7012a26f98753778c36378849aa (diff) | |
download | iftop-c387bd743093d0b8ae83cfb7c442a5351dd27094.zip |
Removed net/bpf.h as it reportedly breaks on Slackware.
Was added by PFLOG patch but the relevant definitions should be in pcap/bpf.h
-rw-r--r-- | iftop.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -12,7 +12,8 @@ #include <sys/ioctl.h> #include <sys/socket.h> #include <net/if.h> -#include <net/bpf.h> +/* include <net/bpf.h> -- this was added by the PFLOG patch but seems + * superfluous and breaks on Slackware */ #if defined(HAVE_PCAP_H) # include <pcap.h> #elif defined(HAVE_PCAP_PCAP_H) |