summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-08-31 14:39:23 -0700
committerGuy Harris <guy@alum.mit.edu>2015-08-31 14:39:23 -0700
commit5ff25beec7ad7fb229b943ecb86fe55bcad531c4 (patch)
tree0c9dc7ea5723347abf7836b66695804a0f3ac546 /tests
parent1a44e70c2d2b754b3f92c66a0a590f6fdc347566 (diff)
downloadlibpcap-5ff25beec7ad7fb229b943ecb86fe55bcad531c4.tar.gz
The official #define for 32-bit and 64-bit Windows is _WIN32.
It's _WIN32, with a leading underscore, not WIN32. See, for example: https://sourceforge.net/p/predef/wiki/OperatingSystems/ and https://msdn.microsoft.com/en-us/library/b0084kay.aspx *Some* environments may also define WIN32, but we shouldn't depend on that.
Diffstat (limited to 'tests')
-rw-r--r--tests/filtertest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/filtertest.c b/tests/filtertest.c
index e45db21e..a7e57389 100644
--- a/tests/filtertest.c
+++ b/tests/filtertest.c
@@ -194,9 +194,9 @@ main(int argc, char **argv)
pcap_t *pd;
struct bpf_program fcode;
-#ifdef WIN32
+#ifdef _WIN32
if(wsockinit() != 0) return 1;
-#endif /* WIN32 */
+#endif /* _WIN32 */
#ifndef BDEBUG
dflag = 1;