diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-06-29 12:55:03 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-06-29 12:55:03 -0400 |
commit | d9052c629b94343aef63f4e8c891c9c0a9c097b5 (patch) | |
tree | ab5ad9fdf4f329764282104566deacb94d97738c /src/common/address.c | |
parent | 66c73abe039611073d6086e617999d56ac8e73bd (diff) | |
download | tor-d9052c629b94343aef63f4e8c891c9c0a9c097b5.tar.gz tor-d9052c629b94343aef63f4e8c891c9c0a9c097b5.zip |
Remove checks for visual C 6.
Diffstat (limited to 'src/common/address.c')
-rw-r--r-- | src/common/address.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/common/address.c b/src/common/address.c index 6bd107889a..d7d815e40f 100644 --- a/src/common/address.c +++ b/src/common/address.c @@ -10,17 +10,16 @@ #define ADDRESS_PRIVATE +#include "orconfig.h" + #ifdef _WIN32 /* For access to structs needed by GetAdaptersAddresses */ -#undef _WIN32_WINNT -#define _WIN32_WINNT 0x0501 #include <process.h> #include <winsock2.h> #include <windows.h> #include <iphlpapi.h> #endif -#include "orconfig.h" #include "compat.h" #include "util.h" #include "address.h" |