From e12df166d37522c2ed434c2d70a1b04640d2d7c6 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Wed, 22 Jun 2011 14:35:49 -0400 Subject: Fix Ipv4&IPv6 lookup in getaddrinfo Problem introduced in the last patch. --- ChangeLog | 4 ++++ sysdeps/posix/getaddrinfo.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 68409c9354..33b7703ee0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2011-06-22 Andreas Schwab + + * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix last change. + 2011-06-22 Ulrich Drepper * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Use diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.c index 3a2737e2cb..14e9270b1b 100644 --- a/sysdeps/posix/getaddrinfo.c +++ b/sysdeps/posix/getaddrinfo.c @@ -894,7 +894,7 @@ gaih_inet (const char *name, const struct gaih_service *service, pat = &((*pat)->next); no_data = 0; } - else if ((*pat)->family == AF_UNSPEC + else if (req->ai_family == AF_UNSPEC || (*pat)->family == req->ai_family) { pat = &((*pat)->next); -- cgit 1.4.1