mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Properly tokenize nameserver line for servers with IPv6 address
This commit is contained in:
committed by
Ulrich Drepper
parent
2e96f1c73b
commit
9be9bfcc9d
@ -1,3 +1,8 @@
|
|||||||
|
2011-07-22 Andreas Schwab <schwab@redhat.com>
|
||||||
|
|
||||||
|
* resolv/res_init.c (__res_vinit): Properly tokenize nameserver
|
||||||
|
line.
|
||||||
|
|
||||||
2011-07-26 Andreas Schwab <schwab@redhat.com>
|
2011-07-26 Andreas Schwab <schwab@redhat.com>
|
||||||
|
|
||||||
* sysdeps/posix/getaddrinfo.c (gaih_inet): Don't discard result of
|
* sysdeps/posix/getaddrinfo.c (gaih_inet): Don't discard result of
|
||||||
|
@ -318,7 +318,7 @@ __res_vinit(res_state statp, int preinit) {
|
|||||||
struct in6_addr a6;
|
struct in6_addr a6;
|
||||||
char *el;
|
char *el;
|
||||||
|
|
||||||
if ((el = strchr(cp, '\n')) != NULL)
|
if ((el = strpbrk(cp, " \t\n")) != NULL)
|
||||||
*el = '\0';
|
*el = '\0';
|
||||||
if ((el = strchr(cp, SCOPE_DELIMITER)) != NULL)
|
if ((el = strchr(cp, SCOPE_DELIMITER)) != NULL)
|
||||||
*el = '\0';
|
*el = '\0';
|
||||||
|
Reference in New Issue
Block a user