浏览代码

r11998@catbus: nickm | 2007-02-28 13:56:55 -0500
Correct an MSC_VER check.


svn:r9685

Nick Mathewson 18 年之前
父节点
当前提交
dfbced7499
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/common/compat.h

+ 1 - 1
src/common/compat.h

@@ -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>