diff options
author | Ulrich Drepper <drepper@redhat.com> | 2010-09-14 00:01:42 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-09-14 00:01:42 -0700 |
commit | e66e7419a6f58200eec6941b14e2dcff9875cc6c (patch) | |
tree | 6c12d2a59f2b955e00c1840a941095417eb48c23 | |
parent | c044aa75354b48d4b7aaffe465706282192e54c2 (diff) | |
download | glibc-e66e7419a6f58200eec6941b14e2dcff9875cc6c.tar.gz glibc-e66e7419a6f58200eec6941b14e2dcff9875cc6c.tar.xz glibc-e66e7419a6f58200eec6941b14e2dcff9875cc6c.zip |
Actually make it possible to user the default name server.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | resolv/res_init.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 9e7bbe28a9..b9974053a7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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-09-08 Chung-Lin Tang <cltang@codesourcery.com> Ulrich Drepper <drepper@redhat.com> 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 && |