mirror of git://sourceware.org/git/glibc.git
* sysdeps/posix/getaddrinfo.c (gaih_inet): When the
gethostbyname4_r function call succeeded, just leave the loop.
This commit is contained in:
parent
5703f47273
commit
bfbbc63f04
|
@ -1,5 +1,8 @@
|
|||
2008-12-29 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/posix/getaddrinfo.c (gaih_inet): When the
|
||||
gethostbyname4_r function call succeeded, just leave the loop.
|
||||
|
||||
[BZ #9694]
|
||||
* wcsmbs/wchar.h: Move undefs for local __need_* constants to the
|
||||
very end.
|
||||
|
|
|
@ -714,6 +714,8 @@ gaih_inet (const char *name, const struct gaih_service *service,
|
|||
status = DL_CALL_FCT (fct4, (name, pat, tmpbuf,
|
||||
tmpbuflen, &rc, &herrno,
|
||||
NULL));
|
||||
if (status == NSS_STATUS_SUCCESS)
|
||||
break;
|
||||
if (status != NSS_STATUS_TRYAGAIN
|
||||
|| rc != ERANGE || herrno != NETDB_INTERNAL)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue