X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Furi.c;h=ef68cd4fad28be8f3a26e82db2f8e10812739f46;hp=dd2d9e4eea4bd0379eac739d9589b7b55727a91b;hb=507af6fc151b69a9b7c243e30387da303c5b83cc;hpb=d1f721c52e3810dcb38429cb3beec9f80043aa57 diff --git a/src/common/uri.c b/src/common/uri.c index dd2d9e4ee..ef68cd4fa 100644 --- a/src/common/uri.c +++ b/src/common/uri.c @@ -18,7 +18,7 @@ #define _LGPL_SOURCE #include #include -#include +#include #include #include #include @@ -115,7 +115,7 @@ static int set_ip_address(const char *addr, int af, char *dst, size_t size) ret = inet_pton(af, addr, buf); if (ret < 1) { /* We consider the dst to be an hostname or an invalid IP char */ - record = gethostbyname2(addr, af); + record = lttng_gethostbyname2(addr, af); if (record == NULL) { /* At this point, the IP or the hostname is bad */ ERR("URI parse bad hostname %s for af %d", addr, af);