]> sourceware.org Git - glibc.git/commitdiff
Properly tokenize nameserver line for servers with IPv6 address
authorAndreas Schwab <schwab@redhat.com>
Thu, 4 Aug 2011 19:50:48 +0000 (15:50 -0400)
committerUlrich Drepper <drepper@gmail.com>
Thu, 4 Aug 2011 19:50:48 +0000 (15:50 -0400)
ChangeLog
resolv/res_init.c

index 0392853b19a59e68118f4687a84521db7f023301..76aef93b10d0ca451d943dad78dc03cc4c9477c7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't discard result of
index 64934b0e5f6e6c64807dd67add6a6a29f344c13b..73caaa4c5ea7c2de253e6a4cfd72f0d2a7e8619a 100644 (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';
This page took 0.053951 seconds and 5 git commands to generate.