aboutsummaryrefslogtreecommitdiffstats
path: root/caputils
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2018-05-16 12:51:45 -0700
committerGuy Harris <guy@alum.mit.edu>2018-05-16 22:03:09 +0000
commitd08d0a87c5dd20d8626649693a81279415f47c22 (patch)
tree6567c4c87cd8ae706cf6b9d3b1bb570fe37bf4f9 /caputils
parent054a7e4606758ebdc8b37cab04da57e5a863cba8 (diff)
Eliminate some unneeded header checks.
sys/stat.h and sys/types.h date back to V7 UNIX, so they should be present on all UN*Xes, and we're assuming they're available on Windows, so, unless and until we ever support platforms that are neither UN*Xes nor Windows, we don't need to check for them. Remove the CMake checks for them, remove the HAVE_ values from cmakeconfig.h.in, and remove all tests for the HAVE_ values. Change-Id: I90bb2aab37958553673b03b52f4931d3b304b9d0 Reviewed-on: https://code.wireshark.org/review/27603 Petri-Dish: Guy Harris <guy@alum.mit.edu> Tested-by: Petri Dish Buildbot Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'caputils')
-rw-r--r--caputils/capture-pcap-util.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/caputils/capture-pcap-util.c b/caputils/capture-pcap-util.c
index 2bc772068b..e2fa5c26b7 100644
--- a/caputils/capture-pcap-util.c
+++ b/caputils/capture-pcap-util.c
@@ -19,9 +19,7 @@
#include <limits.h>
#include <string.h>
-#ifdef HAVE_SYS_TYPES_H
-# include <sys/types.h>
-#endif
+#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>