summaryrefslogtreecommitdiff
path: root/src/common/aes.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2015-06-29 12:55:03 -0400
committerNick Mathewson <nickm@torproject.org>2015-06-29 12:55:03 -0400
commitd9052c629b94343aef63f4e8c891c9c0a9c097b5 (patch)
treeab5ad9fdf4f329764282104566deacb94d97738c /src/common/aes.c
parent66c73abe039611073d6086e617999d56ac8e73bd (diff)
downloadtor-d9052c629b94343aef63f4e8c891c9c0a9c097b5.tar.gz
tor-d9052c629b94343aef63f4e8c891c9c0a9c097b5.zip
Remove checks for visual C 6.
Diffstat (limited to 'src/common/aes.c')
-rw-r--r--src/common/aes.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/common/aes.c b/src/common/aes.c
index 8b9d81fa10..5f2c3f2f03 100644
--- a/src/common/aes.c
+++ b/src/common/aes.c
@@ -12,16 +12,8 @@
#include "orconfig.h"
#ifdef _WIN32 /*wrkard for dtls1.h >= 0.9.8m of "#include <winsock.h>"*/
- #ifndef _WIN32_WINNT
- #define _WIN32_WINNT 0x0501
- #endif
- #define WIN32_LEAN_AND_MEAN
- #if defined(_MSC_VER) && (_MSC_VER < 1300)
- #include <winsock.h>
- #else
- #include <winsock2.h>
- #include <ws2tcpip.h>
- #endif
+ #include <winsock2.h>
+ #include <ws2tcpip.h>
#endif
#include <openssl/opensslv.h>