]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
r11998@catbus: nickm | 2007-02-28 13:56:55 -0500
authorNick Mathewson <nickm@torproject.org>
Wed, 28 Feb 2007 18:57:03 +0000 (18:57 +0000)
committerNick Mathewson <nickm@torproject.org>
Wed, 28 Feb 2007 18:57:03 +0000 (18:57 +0000)
 Correct an MSC_VER check.

svn:r9685

src/common/compat.h

index b7eaf75ea3ccccb3d25dbe6d705cbcb98fc7ebbf..c516f8d651ee2a958498bba9fd37cd8b6daf0173 100644 (file)
@@ -13,7 +13,7 @@
 #define WIN32_WINNT 0x400
 #define _WIN32_WINNT 0x400
 #define WIN32_LEAN_AND_MEAN
-#if defined(_MSC_VER) && (_MSC_VER <= 1300)
+#if defined(_MSC_VER) && (_MSC_VER < 1300)
 #include <winsock.h>
 #else
 #include <winsock2.h>