[or-cvs] r9685: Correct an MSC_VER check. (in tor/trunk: . src/common)
nickm at seul.org
nickm at seul.org
Wed Feb 28 18:57:25 UTC 2007
Author: nickm
Date: 2007-02-28 13:57:03 -0500 (Wed, 28 Feb 2007)
New Revision: 9685
Modified:
tor/trunk/
tor/trunk/src/common/compat.h
Log:
r11998 at catbus: nickm | 2007-02-28 13:56:55 -0500
Correct an MSC_VER check.
Property changes on: tor/trunk
___________________________________________________________________
svk:merge ticket from /tor/trunk [r11998] on 8246c3cf-6607-4228-993b-4d95d33730f1
Modified: tor/trunk/src/common/compat.h
===================================================================
--- tor/trunk/src/common/compat.h 2007-02-28 18:52:57 UTC (rev 9684)
+++ tor/trunk/src/common/compat.h 2007-02-28 18:57:03 UTC (rev 9685)
@@ -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>
More information about the tor-commits
mailing list