mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-26 06:50:07 +00:00
* sysdeps/posix/getaddrinfo.c (getaddrinfo): Only restrict search
to IPv4 or IPv6 if an interface has been found.
This commit is contained in:
parent
ca4dc0fe64
commit
be4607eba8
@ -1,7 +1,7 @@
|
||||
2008-11-26 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/posix/getaddrinfo.c (getaddrinfo): If the system has
|
||||
neither IPv4 nor IPv6 addresses defined, don't do anything.
|
||||
* sysdeps/posix/getaddrinfo.c (getaddrinfo): Only restrict search
|
||||
to IPv4 or IPv6 if an interface has been found.
|
||||
|
||||
2008-11-26 Roland McGrath <roland@redhat.com>
|
||||
|
||||
|
@ -2108,13 +2108,8 @@ getaddrinfo (const char *name, const char *service,
|
||||
{
|
||||
/* If we haven't seen both IPv4 and IPv6 interfaces we can
|
||||
narrow down the search. */
|
||||
if (! seen_ipv4 || ! seen_ipv6)
|
||||
if ((! seen_ipv4 || ! seen_ipv6) && (seen_ipv4 || seen_ipv6))
|
||||
{
|
||||
if (! seen_ipv4 && ! seen_ipv6)
|
||||
/* Neither IPv4 nor IPv6 interfaces exist, nothing to
|
||||
return. */
|
||||
goto err_noname;
|
||||
|
||||
local_hints = *hints;
|
||||
local_hints.ai_family = seen_ipv4 ? PF_INET : PF_INET6;
|
||||
hints = &local_hints;
|
||||
@ -2124,7 +2119,6 @@ getaddrinfo (const char *name, const char *service,
|
||||
|| (hints->ai_family == PF_INET6 && ! seen_ipv6))
|
||||
{
|
||||
/* We cannot possibly return a valid answer. */
|
||||
err_noname:
|
||||
free (in6ai);
|
||||
return EAI_NONAME;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user