diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-06-30 11:32:19 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-06-30 11:32:19 +0200 |
commit | b606c6ce66d4772068bfe3e410c28a247633ee24 (patch) | |
tree | 1c0c7549bce480393f79395d591436517bb4f97f | |
parent | 3f8f1eb6b0ca45205cea3591f27727e21d598f62 (diff) | |
download | glibc-b606c6ce66d4772068bfe3e410c28a247633ee24.zip glibc-b606c6ce66d4772068bfe3e410c28a247633ee24.tar.gz glibc-b606c6ce66d4772068bfe3e410c28a247633ee24.tar.bz2 |
resolv: Remove source argument fron res_options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | resolv/res_init.c | 8 |
2 files changed, 9 insertions, 4 deletions
@@ -1,5 +1,10 @@ 2017-06-30 Florian Weimer <fweimer@redhat.com> + * resolv/res_init.c (res_setoptions): Remove source argument. + (res_vinit_1): Adjust. + +2017-06-30 Florian Weimer <fweimer@redhat.com> + * resolv/res_query.c (DEBUG): Remove preprocessor conditional. 2017-06-30 Florian Weimer <fweimer@redhat.com> diff --git a/resolv/res_init.c b/resolv/res_init.c index 821f060..5d8b2c9 100644 --- a/resolv/res_init.c +++ b/resolv/res_init.c @@ -103,7 +103,7 @@ #include <inet/net-internal.h> #include <errno.h> -static void res_setoptions (res_state, const char *, const char *); +static void res_setoptions (res_state, const char *); static uint32_t net_mask (struct in_addr); unsigned long long int __res_initstamp; @@ -381,7 +381,7 @@ res_vinit_1 (res_state statp, bool preinit, FILE *fp, char **buffer) } if (MATCH (*buffer, "options")) { - res_setoptions (statp, *buffer + sizeof ("options") - 1, "conf"); + res_setoptions (statp, *buffer + sizeof ("options") - 1); continue; } } @@ -417,7 +417,7 @@ res_vinit_1 (res_state statp, bool preinit, FILE *fp, char **buffer) } if ((cp = getenv ("RES_OPTIONS")) != NULL) - res_setoptions (statp, cp, "env"); + res_setoptions (statp, cp); statp->options |= RES_INIT; return true; } @@ -469,7 +469,7 @@ __res_vinit (res_state statp, int preinit) } static void -res_setoptions (res_state statp, const char *options, const char *source) +res_setoptions (res_state statp, const char *options) { const char *cp = options; |