diff options
author | Andreas Schwab <schwab@redhat.com> | 2010-03-26 05:35:50 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-03-26 05:35:50 -0700 |
commit | c3dfadb87e16f0fab6f4d5242bcecf06c02976c7 (patch) | |
tree | a8f7b7e7e275fe44b86fee51e5765290acadfb2f /sysdeps | |
parent | 2b0fba7530eafb3d815b8c9f3d546d3494680102 (diff) | |
download | glibc-c3dfadb87e16f0fab6f4d5242bcecf06c02976c7.tar.gz glibc-c3dfadb87e16f0fab6f4d5242bcecf06c02976c7.tar.xz glibc-c3dfadb87e16f0fab6f4d5242bcecf06c02976c7.zip |
Fix spurious UNAVAIL status is getaddrinfo
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/posix/getaddrinfo.c | 1 |
1 files changed, 1 insertions, 0 deletions
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) |