Skip to content

Commit

Permalink
Actually make it possible to user the default name server.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Sep 14, 2010
1 parent c044aa7 commit e66e741
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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>

Expand Down
1 change: 1 addition & 0 deletions resolv/res_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 &&
Expand Down

0 comments on commit e66e741

Please sign in to comment.