author | Jacek Caban <jacek@codeweavers.com> |
Wed, 01 Oct 2014 10:58:30 +0200 | |
changeset 208186 | bbff6a89854a721fa0e844ca4a96b728672c6b1b |
parent 208103 | 1ffb7f0c497f000c1b0a830d341bfc02c95d5c60 |
child 208187 | fe78ab3b491997720ec831889c6dbf05ee95dc7b |
push id | 27580 |
push user | kwierso@gmail.com |
push date | Wed, 01 Oct 2014 23:26:55 +0000 |
treeherder | autoland@af6c928893c0 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 1067679 |
milestone | 35.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/netwerk/dns/GetAddrInfo.cpp +++ b/netwerk/dns/GetAddrInfo.cpp @@ -29,24 +29,24 @@ static PRLogModuleInfo *gGetAddrInfoLog #define LOG_WARNING(msg, ...) \ PR_LOG(gGetAddrInfoLog, PR_LOG_WARNING, ("[DNS]: " msg, ##__VA_ARGS__)) #else #define LOG(args) #define LOG_WARNING(args) #endif #if DNSQUERY_AVAILABLE -// There is a bug in Windns.h where the type of parameter ppQueryResultsSet for +// There is a bug in windns.h where the type of parameter ppQueryResultsSet for // DnsQuery_A is dependent on UNICODE being set. It should *always* be // PDNS_RECORDA, but if UNICODE is set it is PDNS_RECORDW. To get around this // we make sure that UNICODE is unset. #undef UNICODE #include <ws2tcpip.h> #undef GetAddrInfo -#include <Windns.h> +#include <windns.h> #endif namespace mozilla { namespace net { #if DNSQUERY_AVAILABLE //////////////////////////// // WINDOWS IMPLEMENTATION //