aboutsummaryrefslogtreecommitdiffstats
path: root/pcap-util.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-09-11 23:03:36 +0000
committerGuy Harris <guy@alum.mit.edu>2004-09-11 23:03:36 +0000
commitf23f4ecf04d8b01ad4990dd2b15c675263590f7b (patch)
tree340e3e52f4aa5df1448894b7c025a4c433a1cadc /pcap-util.c
parentacdc9439b3761ffac87a7aef738f3d3881bc7347 (diff)
Use _WIN32 rather than WIN32 to determine if we're compiling on Win32;
according to Gisle Vanem, WIN32 isn't a built-in in MSVC, but _WIN32 is. svn path=/trunk/; revision=11972
Diffstat (limited to 'pcap-util.c')
-rw-r--r--pcap-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pcap-util.c b/pcap-util.c
index b1fca873da..f2cb31cac6 100644
--- a/pcap-util.c
+++ b/pcap-util.c
@@ -50,7 +50,7 @@
#include "pcap-util.h"
#include "pcap-util-int.h"
-#ifndef WIN32
+#ifndef _WIN32
#include <netinet/in.h>
#endif