From 0f0b9c2913f0ca8f700378c22cd28485ae52efeb Mon Sep 17 00:00:00 2001 From: Rodrigo Kumpera Date: Tue, 5 Sep 2017 14:28:37 -0700 Subject: [PATCH] [utils] Fix inet_pton fallback. --- mono/utils/networking-missing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mono/utils/networking-missing.c b/mono/utils/networking-missing.c index 5c99dbb9e34..45ccf518a7d 100644 --- a/mono/utils/networking-missing.c +++ b/mono/utils/networking-missing.c @@ -17,7 +17,7 @@ #endif //wasm does have inet_pton even though autoconf fails to find -#if defined (HAVE_INET_PTON) && !defined (HOST_WASM) +#if !defined (HAVE_INET_PTON) && !defined (HOST_WASM) int inet_pton (int family, const char *address, void *inaddrp) -- 2.11.4.GIT