From: Nick Mathewson Date: Wed, 28 Feb 2007 18:57:03 +0000 (+0000) Subject: r11998@catbus: nickm | 2007-02-28 13:56:55 -0500 X-Git-Tag: tor-0.1.2.9-rc~19 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dfbced74999c85b4be88db96a5e4407218ac12a6;p=thirdparty%2Ftor.git r11998@catbus: nickm | 2007-02-28 13:56:55 -0500 Correct an MSC_VER check. svn:r9685 --- 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 #else #include