diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | resolv/res_init.c | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2010-09-14 Ulrich Drepper <drepper@redhat.com> + + * resolv/res_init.c (__res_vinit): Count the default server we added. + 2010-08-25 Ulrich Drepper <drepper@redhat.com> [BZ #10851] diff --git a/resolv/res_init.c b/resolv/res_init.c index 202569ddac..74715f34e9 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 && |