diff options
Diffstat (limited to 'resolv/res_init.c')
-rw-r--r-- | resolv/res_init.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/resolv/res_init.c b/resolv/res_init.c index 74715f34e9..7588432b22 100644 --- a/resolv/res_init.c +++ b/resolv/res_init.c @@ -545,6 +545,11 @@ res_setoptions(res_state statp, const char *options, const char *source) { } else if (!strncmp(cp, "single-request", sizeof("single-request") - 1)) { statp->options |= RES_SNGLKUP; + } else if (!strncmp(cp, "no_tld_query", + sizeof("no_tld_query") - 1) || + !strncmp(cp, "no-tld-query", + sizeof("no-tld-query") - 1)) { + statp->options |= RES_NOTLDQUERY; } else { /* XXX - print a warning here? */ } |