From: Ulrich Drepper Date: Tue, 14 Sep 2010 07:01:42 +0000 (-0700) Subject: Actually make it possible to user the default name server. X-Git-Tag: glibc-2.12.2~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=36f5b87d0e54ffb3efa3ebec86a77bc89b1b98f7;p=thirdparty%2Fglibc.git Actually make it possible to user the default name server. (cherry picked from commit e66e7419a6f58200eec6941b14e2dcff9875cc6c) --- diff --git a/ChangeLog b/ChangeLog index ba71b648f98..ad8a25f245a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-09-14 Ulrich Drepper + + * resolv/res_init.c (__res_vinit): Count the default server we added. + 2010-08-25 Ulrich Drepper [BZ #10851] diff --git a/resolv/res_init.c b/resolv/res_init.c index 202569ddac0..74715f34e99 100644 --- a/resolv/res_init.c +++ b/resolv/res_init.c @@ -430,6 +430,7 @@ __res_vinit(res_state statp, int preinit) { statp->nsaddr.sin_addr = inet_makeaddr(IN_LOOPBACKNET, 1); statp->nsaddr.sin_family = AF_INET; statp->nsaddr.sin_port = htons(NAMESERVER_PORT); + statp->nscount = 1; } if (statp->defdname[0] == 0 && __gethostname(buf, sizeof(statp->defdname) - 1) == 0 &&