summaryrefslogtreecommitdiff
path: root/nss/getent.c
diff options
context:
space:
mode:
Diffstat (limited to 'nss/getent.c')
-rw-r--r--nss/getent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nss/getent.c b/nss/getent.c
index 02bba39752..489420ef79 100644
--- a/nss/getent.c
+++ b/nss/getent.c
@@ -280,9 +280,9 @@ hosts_keys (int number, char *key[])
char addr[IN6ADDRSZ];
if (inet_pton (AF_INET6, key[i], &addr) > 0)
- host = gethostbyaddr (addr, sizeof (addr), AF_INET6);
+ host = gethostbyaddr (addr, IN6ADDRSZ, AF_INET6);
else if (inet_pton (AF_INET, key[i], &addr) > 0)
- host = gethostbyaddr (addr, sizeof (addr), AF_INET);
+ host = gethostbyaddr (addr, INADDRSZ, AF_INET);
else if ((host = gethostbyname2 (key[i], AF_INET6)) == NULL)
host = gethostbyname2 (key[i], AF_INET);