aboutsummaryrefslogtreecommitdiff
path: root/src/util/os_network.c
diff options
context:
space:
mode:
authorРуслан Ижбулатов <lrn1986@gmail.com>2017-02-25 12:47:56 +0000
committerРуслан Ижбулатов <lrn1986@gmail.com>2017-02-25 21:02:38 +0000
commitf41740ec89477d066376d6e60aaf6f849237d454 (patch)
tree1ee09c8335b6b43cd30eecd725cb31688f176b16 /src/util/os_network.c
parenta023ba6e0c89fd398213fc869b0f71ae31fb4cf6 (diff)
downloadgnunet-f41740ec89477d066376d6e60aaf6f849237d454.tar.gz
gnunet-f41740ec89477d066376d6e60aaf6f849237d454.zip
W32: Fix the conditaions for the ifconfig function
It's not used on W32.
Diffstat (limited to 'src/util/os_network.c')
-rw-r--r--src/util/os_network.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/os_network.c b/src/util/os_network.c
index 2ac1a16d3..5cb2b6864 100644
--- a/src/util/os_network.c
+++ b/src/util/os_network.c
@@ -35,7 +35,7 @@
35#define LOG_STRERROR_FILE(kind,syscall,filename) GNUNET_log_from_strerror_file (kind, "util-os-network", syscall, filename) 35#define LOG_STRERROR_FILE(kind,syscall,filename) GNUNET_log_from_strerror_file (kind, "util-os-network", syscall, filename)
36 36
37 37
38#if ! (HAVE_GETIFADDRS && HAVE_FREEIFADDRS) 38#if ! (HAVE_GETIFADDRS && HAVE_FREEIFADDRS) && !MINGW
39/** 39/**
40 * Try to enumerate all network interfaces using 'ifconfig'. 40 * Try to enumerate all network interfaces using 'ifconfig'.
41 * 41 *