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 /resolv | |
parent | c044aa75354b48d4b7aaffe465706282192e54c2 (diff) | |
download | glibc-e66e7419a6f58200eec6941b14e2dcff9875cc6c.tar glibc-e66e7419a6f58200eec6941b14e2dcff9875cc6c.tar.gz glibc-e66e7419a6f58200eec6941b14e2dcff9875cc6c.tar.bz2 glibc-e66e7419a6f58200eec6941b14e2dcff9875cc6c.zip |
Actually make it possible to user the default name server.
Diffstat (limited to 'resolv')
-rw-r--r-- | resolv/res_init.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 && |