@@ -, +, @@ --- support/export/hostname.c | 3 +++ 1 file changed, 3 insertions(+) --- a/support/export/hostname.c +++ a/support/export/hostname.c @@ -382,6 +382,7 @@ host_numeric_addrinfo(const struct sockaddr *sap) ai = host_pton(buf); +#if !definded(__UCLIBC__) && defined(__GLIBC__) /* * getaddrinfo(AI_NUMERICHOST) never fills in ai_canonname */ @@ -392,7 +393,9 @@ host_numeric_addrinfo(const struct sockaddr *sap) ai = NULL; } } +#endif return ai; } + #endif /* !HAVE_GETNAMEINFO */ --