From: Art Cancro Date: Sun, 14 Mar 2010 02:56:55 +0000 (+0000) Subject: * Call getnameinfo() without the flag that suppresses name lookups X-Git-Tag: v7.86~320 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=c91e3e77cad3c8448c5c67a89b668edb93805210;p=citadel.git * Call getnameinfo() without the flag that suppresses name lookups --- diff --git a/webcit/locate_host.c b/webcit/locate_host.c index b18f1031b..ae99fc3dc 100644 --- a/webcit/locate_host.c +++ b/webcit/locate_host.c @@ -36,7 +36,7 @@ void locate_host(StrBuf *tbuf, int client_socket) getnameinfo((struct sockaddr *)&clientaddr, addrlen, clienthost, sizeof(clienthost), clientservice, sizeof(clientservice), - NI_NUMERICHOST + 0 ); StrBufAppendBufPlain(tbuf, clienthost, -1, 0);