summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2007-02-28 18:52:57 +0000
committerNick Mathewson <nickm@torproject.org>2007-02-28 18:52:57 +0000
commit2ee2e63631aa42144f4e9d904dd367b8ad863401 (patch)
tree664fbbf9824185feb024ebb7bf5d2ebbe4e11962
parent8fb73c57f24ae1ab9fce51ed600117e8d11d1816 (diff)
downloadtor-2ee2e63631aa42144f4e9d904dd367b8ad863401.tar.gz
tor-2ee2e63631aa42144f4e9d904dd367b8ad863401.zip
r11996@catbus: nickm | 2007-02-28 13:52:48 -0500
Add an MSC_VER check I missed. svn:r9684
-rw-r--r--src/or/or.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/or.h b/src/or/or.h
index fbd559fcc9..585645c8cf 100644
--- a/src/or/or.h
+++ b/src/or/or.h
@@ -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>