summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Friloux <guillaume.friloux@gmail.com>2015-01-30 14:24:35 +0100
committerCedric BAIL <cedric@osg.samsung.com>2015-02-11 17:03:38 +0100
commit83917a8c6430e57279c01de801356c69565169a7 (patch)
treedde0cbf554417487e1e6c77476dac28c9206901c
parent9cf31fc842361593a7ff4f48d70ce63ef3552a46 (diff)
downloadefl-83917a8c6430e57279c01de801356c69565169a7.tar.gz
ecore_con: do not load /etc/hosts on Windows.
-rw-r--r--src/lib/ecore_con/dns.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/ecore_con/dns.c b/src/lib/ecore_con/dns.c
index 9eff2c20af..1811dab42e 100644
--- a/src/lib/ecore_con/dns.c
+++ b/src/lib/ecore_con/dns.c
@@ -3437,10 +3437,11 @@ struct dns_hosts *dns_hosts_local(int *error_) {
if (!(hosts = dns_hosts_open(&error)))
goto error;
-
+
+#ifndef _WIN32
if ((error = dns_hosts_loadpath(hosts, "/etc/hosts")))
goto error;
-
+#endif
return hosts;
error:
*error_ = error;