diff options
author | Renato Botelho <garga@FreeBSD.org> | 2018-11-06 08:55:22 -0200 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2018-11-06 08:59:31 -0200 |
commit | bcfbe85083dea063b326b7fb229de4d3eb000a92 (patch) | |
tree | 7df978f627e7233c178888eefec02fc05aa03d26 | |
parent | 299fc72fea7a32b18a77457c70028e9679fd5c0d (diff) | |
download | tcpdump-bcfbe85083dea063b326b7fb229de4d3eb000a92.tar.gz |
Include correct capsicum header
Current included header `sys/capability.h` is deprecated. All
supported FreeBSD versions have now the proper header `sys/capsicum.h`
-rw-r--r-- | tcpdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -81,7 +81,7 @@ The Regents of the University of California. All rights reserved.\n"; * in the opposite order works fine. */ #ifdef HAVE_CAPSICUM -#include <sys/capability.h> +#include <sys/capsicum.h> #include <sys/ioccom.h> #include <net/bpf.h> #include <libgen.h> |