From: Rodrigo Kumpera Date: Tue, 5 Sep 2017 21:28:37 +0000 (-0700) Subject: [utils] Fix inet_pton fallback. X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;ds=sidebyside;h=0f0b9c2913f0ca8f700378c22cd28485ae52efeb;p=mono.git [utils] Fix inet_pton fallback. --- 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)