aboutsummaryrefslogtreecommitdiffstats
path: root/editcap.c
diff options
context:
space:
mode:
authormorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2011-08-09 21:02:10 +0000
committermorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2011-08-09 21:02:10 +0000
commit2d657ad97ad3084bc6e367f8634dc494fc267587 (patch)
treeacde70beaac706649ef2f54d96cfddf3a7df317b /editcap.c
parent0506bd7d86ead752795dea24c829e7312e4569b6 (diff)
Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5608 :
getopt() can/should normally be found in unistd.h, so: - When testing for getopt(), define that we HAVE_GETOPT instead of HAVE_GETOPT_H (to avoid confusion). - Don't attempt to include getopt.h: not all OS's have it (for example, Solaris 9 does not). - (All the places which need getopt already include unistd.h (if we have it).) If this breaks things on some OS, we might need (a real) HAVE_GETOPT_H check. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38437 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'editcap.c')
-rw-r--r--editcap.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/editcap.c b/editcap.c
index 517e94d23b..e74946ec82 100644
--- a/editcap.c
+++ b/editcap.c
@@ -42,9 +42,7 @@
#include "wtap.h"
-#ifdef HAVE_GETOPT_H
-#include <getopt.h>
-#else
+#ifndef HAVE_GETOPT
#include "wsutil/wsgetopt.h"
#endif