Checking for MS_WINDOWS rather than WIN32 is a Tor-ism. Fix that!

svn:r1360
This commit is contained in:
Nick Mathewson 2009-07-17 20:28:03 +00:00
parent c02b305ae5
commit a386fde321

View File

@ -446,8 +446,9 @@ int evdns_base_resolv_conf_parse(struct evdns_base *base, int flags, const char
@return 0 if successful, or -1 if an error occurred
@see evdns_resolv_conf_parse()
*/
#ifdef MS_WINDOWS
#ifdef WIN32
int evdns_config_windows_nameservers(void);
#define EVDNS_CONFIG_WINDOWS_NAMESERVERS_IMPLEMENTED
#endif