]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
r11996@catbus: nickm | 2007-02-28 13:52:48 -0500
authorNick Mathewson <nickm@torproject.org>
Wed, 28 Feb 2007 18:52:57 +0000 (18:52 +0000)
committerNick Mathewson <nickm@torproject.org>
Wed, 28 Feb 2007 18:52:57 +0000 (18:52 +0000)
 Add an MSC_VER check I missed.

svn:r9684

src/or/or.h

index fbd559fcc9979d9da55fcaa8dc18c9018d7e382d..585645c8cf44a5ddc0492d79c113d20195ebfd3a 100644 (file)
@@ -95,9 +95,9 @@
  * select() anywhere in our application or in anything it links to: these
  * documents are either the holy texts of a cargo cult of network
  * programmers, or more likely a simplification of what's going on for
- * people who haven't read winsock[2].c for themselves.
+ * people who haven't read winsock[2].h for themselves.
  */
-#if (_MSC_VER <= 1300)
+#if defined(_MSC_VER) && (_MSC_VER <= 1300)
 #include <winsock.h>
 #else
 #include <winsock2.h>