summaryrefslogtreecommitdiff
path: root/dumpcap.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2009-10-06 16:01:18 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2009-10-06 16:01:18 +0000
commit98024a007f590ed79ce43b89bcf7287ea240b989 (patch)
tree0dc184c467bbca781c4d7a049ab14a67b4e5cfea /dumpcap.c
parentc88f493d4d1d07933339ffe17d33a0ccfcc8cc32 (diff)
downloadwireshark-98024a007f590ed79ce43b89bcf7287ea240b989.tar.gz
Invert check for getopt: NEED_GETOPT_H -> HAVE_GETOPT_H
Rename getopt.[ch] -> wsgetopt.[ch] to avoid name collision. svn path=/trunk/; revision=30370
Diffstat (limited to 'dumpcap.c')
-rw-r--r--dumpcap.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/dumpcap.c b/dumpcap.c
index f9538caff1..99dd98f0d1 100644
--- a/dumpcap.c
+++ b/dumpcap.c
@@ -51,8 +51,10 @@
#include <signal.h>
#include <errno.h>
-#ifdef NEED_GETOPT_H
-#include "getopt.h"
+#ifdef HAVE_GETOPT_H
+#include <getopt.h>
+#else
+#include "wsgetopt.h"
#endif
#ifdef HAVE_NETDB_H
@@ -2543,7 +2545,6 @@ int
main(int argc, char *argv[])
{
int opt;
- extern char *optarg;
gboolean arg_error = FALSE;
#ifdef _WIN32