1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

Properly tokenize nameserver line for servers with IPv6 address

This commit is contained in:
Andreas Schwab
2011-08-04 15:50:48 -04:00
committed by Ulrich Drepper
parent 2e96f1c73b
commit 9be9bfcc9d
2 changed files with 6 additions and 1 deletions

View File

@ -318,7 +318,7 @@ __res_vinit(res_state statp, int preinit) {
struct in6_addr a6;
char *el;
if ((el = strchr(cp, '\n')) != NULL)
if ((el = strpbrk(cp, " \t\n")) != NULL)
*el = '\0';
if ((el = strchr(cp, SCOPE_DELIMITER)) != NULL)
*el = '\0';