1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

Recognize use-vc option in resolv.conf

This commit is contained in:
Ulrich Drepper
2011-05-29 21:43:33 -04:00
parent c30b7ee2c3
commit 16985fd0c7
3 changed files with 15 additions and 8 deletions

View File

@ -1,5 +1,9 @@
2011-05-29 Ulrich Drepper <drepper@gmail.com> 2011-05-29 Ulrich Drepper <drepper@gmail.com>
[BZ #11558]
* resolv/res_init.c (res_setoptions): Recognize use-vc option and
set RES_USEVC.
[BZ #11634] [BZ #11634]
* elf/Makefile (tests): Don't add tst-audit[67] without working -mavx. * elf/Makefile (tests): Don't add tst-audit[67] without working -mavx.

17
NEWS
View File

@ -10,14 +10,15 @@ Version 2.14
* The following bugs are resolved with this release: * The following bugs are resolved with this release:
386, 6420, 7101, 9730, 9732, 9809, 10138, 10149, 10157, 11257, 11258, 386, 6420, 7101, 9730, 9732, 9809, 10138, 10149, 10157, 11257, 11258,
11487, 11532, 11578, 11634, 11653, 11668, 11697, 11724, 11781, 11799, 11487, 11532, 11558, 11578, 11634, 11653, 11668, 11697, 11724, 11781,
11820, 11837, 11857, 11869, 11892, 11895, 11901, 11945, 11947, 11952, 11799, 11820, 11837, 11857, 11869, 11892, 11895, 11901, 11945, 11947,
11987, 12052, 12083, 12158, 12178, 12200, 12346, 12393, 12420, 12432, 11952, 11987, 12052, 12083, 12158, 12178, 12200, 12346, 12393, 12420,
12445, 12449, 12453, 12454, 12460, 12469, 12489, 12509, 12510, 12511, 12432, 12445, 12449, 12453, 12454, 12460, 12469, 12489, 12509, 12510,
12518, 12527, 12541, 12545, 12551, 12582, 12583, 12587, 12597, 12601, 12511, 12518, 12527, 12541, 12545, 12551, 12582, 12583, 12587, 12597,
12611, 12625, 12626, 12631, 12650, 12653, 12655, 12660, 12671, 12681, 12601, 12611, 12625, 12626, 12631, 12650, 12653, 12655, 12660, 12671,
12685, 12711, 12713, 12714, 12717, 12723, 12724, 12734, 12738, 12746, 12681, 12685, 12711, 12713, 12714, 12717, 12723, 12724, 12734, 12738,
12766, 12775, 12777, 12782, 12788, 12792, 12795, 12811, 12813, 12814 12746, 12766, 12775, 12777, 12782, 12788, 12792, 12795, 12811, 12813,
12814
* The RPC implementation in libc is obsoleted. Old programs keep working * The RPC implementation in libc is obsoleted. Old programs keep working
but new programs cannot be linked with the routines in libc anymore. but new programs cannot be linked with the routines in libc anymore.

View File

@ -550,6 +550,8 @@ res_setoptions(res_state statp, const char *options, const char *source) {
!strncmp(cp, "no-tld-query", !strncmp(cp, "no-tld-query",
sizeof("no-tld-query") - 1)) { sizeof("no-tld-query") - 1)) {
statp->options |= RES_NOTLDQUERY; statp->options |= RES_NOTLDQUERY;
} else if (!strncmp(cp, "use-vc", sizeof("use-vc") - 1)) {
statp->options |= RES_USEVC;
} else { } else {
/* XXX - print a warning here? */ /* XXX - print a warning here? */
} }