diff options
author | Florian Weimer <fweimer@redhat.com> | 2016-10-04 11:52:10 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2016-12-31 18:55:14 +0100 |
commit | b76e065991ec01299225d9da90a627ebe6c1ac97 (patch) | |
tree | ac94cc82b134096975419ced320f6ed329130756 /resolv/res_init.c | |
parent | 5840c75c2d6a9b980d6789f2ca7d47a9fa067263 (diff) | |
download | glibc-b76e065991ec01299225d9da90a627ebe6c1ac97.tar.gz glibc-b76e065991ec01299225d9da90a627ebe6c1ac97.tar.xz glibc-b76e065991ec01299225d9da90a627ebe6c1ac97.zip |
resolv: Deprecate the "inet6" option and RES_USE_INET6 [BZ #19582]
Diffstat (limited to 'resolv/res_init.c')
-rw-r--r-- | resolv/res_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resolv/res_init.c b/resolv/res_init.c index b29c0d4ee5..923724f86d 100644 --- a/resolv/res_init.c +++ b/resolv/res_init.c @@ -66,7 +66,7 @@ #include <ctype.h> #include <netdb.h> -#include <resolv.h> +#include <resolv/resolv-internal.h> #include <stdio.h> #include <stdio_ext.h> #include <stdlib.h> @@ -437,7 +437,7 @@ res_setoptions(res_state statp, const char *options, const char *source) { unsigned long int flag; } options[] = { #define STRnLEN(str) str, sizeof (str) - 1 - { STRnLEN ("inet6"), 0, RES_USE_INET6 }, + { STRnLEN ("inet6"), 0, DEPRECATED_RES_USE_INET6 }, { STRnLEN ("rotate"), 0, RES_ROTATE }, { STRnLEN ("edns0"), 0, RES_USE_EDNS0 }, { STRnLEN ("single-request-reopen"), 0, RES_SNGLKUPREOP }, |