diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-02-28 18:57:03 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-02-28 18:57:03 +0000 |
commit | dfbced74999c85b4be88db96a5e4407218ac12a6 (patch) | |
tree | 4ab5d9290e0b8919dffe4276aabb736b1c67273f | |
parent | 2ee2e63631aa42144f4e9d904dd367b8ad863401 (diff) | |
download | tor-dfbced74999c85b4be88db96a5e4407218ac12a6.tar.gz tor-dfbced74999c85b4be88db96a5e4407218ac12a6.zip |
r11998@catbus: nickm | 2007-02-28 13:56:55 -0500
Correct an MSC_VER check.
svn:r9685
-rw-r--r-- | src/common/compat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/compat.h b/src/common/compat.h index b7eaf75ea3..c516f8d651 100644 --- a/src/common/compat.h +++ b/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> |