summaryrefslogtreecommitdiff
path: root/src/common/tortls.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-07-15 10:03:59 -0400
committerNick Mathewson <nickm@torproject.org>2011-07-15 10:03:59 -0400
commit44cfa538731079ffd6eb5f80b2e3c19c4f8acf03 (patch)
tree40c400cfea71ca53a3db5f813547c1b0555c8163 /src/common/tortls.c
parent852b1312812bd0174353271c5a2d42ed08c6b8a2 (diff)
downloadtor-44cfa538731079ffd6eb5f80b2e3c19c4f8acf03.tar.gz
tor-44cfa538731079ffd6eb5f80b2e3c19c4f8acf03.zip
Make WIN32_WINNT defines conditional
Requested by Gisle Vanem on tor-dev. I'm not quite sure this is the right solution, but it's probably harmless.
Diffstat (limited to 'src/common/tortls.c')
-rw-r--r--src/common/tortls.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c
index a208bc7614..21f2c5072b 100644
--- a/src/common/tortls.c
+++ b/src/common/tortls.c
@@ -22,8 +22,12 @@
#include <assert.h>
#ifdef MS_WINDOWS /*wrkard for dtls1.h >= 0.9.8m of "#include <winsock.h>"*/
+ #ifndef WIN32_WINNT
#define WIN32_WINNT 0x400
+ #endif
+ #ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x400
+ #endif
#define WIN32_LEAN_AND_MEAN
#if defined(_MSC_VER) && (_MSC_VER < 1300)
#include <winsock.h>