From 9914417d124400a5b4104a9d8ef8d46d1d464c6e Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Fri, 26 Mar 2010 05:35:50 -0700 Subject: [PATCH] Fix spurious UNAVAIL status is getaddrinfo (cherry picked from commit c3dfadb87e16f0fab6f4d5242bcecf06c02976c7) --- ChangeLog | 5 +++++ sysdeps/posix/getaddrinfo.c | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 92ec78d8c6..be91db9ff0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2010-03-25 Andreas Schwab + * sysdeps/posix/getaddrinfo.c (gaih_inet): Reset no_data before + each action. + +2010-03-25 Andreas Schwab + * sysdeps/posix/cuserid.c: Fix typo. 2010-03-24 Ulrich Drepper diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.c index 62c38f69be..8b7e38fdea 100644 --- a/sysdeps/posix/getaddrinfo.c +++ b/sysdeps/posix/getaddrinfo.c @@ -702,6 +702,7 @@ gaih_inet (const char *name, const struct gaih_service *service, while (!no_more) { + no_data = 0; nss_gethostbyname4_r fct4 = __nss_lookup_function (nip, "gethostbyname4_r"); if (fct4 != NULL) -- 2.11.4.GIT