]> granicus.if.org Git - libevent/commitdiff
Checking for MS_WINDOWS rather than WIN32 is a Tor-ism. Fix that!
authorNick Mathewson <nickm@torproject.org>
Fri, 17 Jul 2009 20:28:03 +0000 (20:28 +0000)
committerNick Mathewson <nickm@torproject.org>
Fri, 17 Jul 2009 20:28:03 +0000 (20:28 +0000)
svn:r1360

include/event2/dns.h

index 8b182fe79e44d32e595e20016eff3394482df49c..49304b5c2e18c80a360a0e157310b168ce625dfe 100644 (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