diff options
Diffstat (limited to 'resolv/res_init.c')
-rw-r--r-- | resolv/res_init.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/resolv/res_init.c b/resolv/res_init.c index e563dcfb03..cbab7cada5 100644 --- a/resolv/res_init.c +++ b/resolv/res_init.c @@ -489,6 +489,9 @@ res_setoptions(res_state statp, const char *options, const char *source) { #endif } else if (!strncmp(cp, "inet6", sizeof("inet6") - 1)) { statp->options |= RES_USE_INET6; + } else if (!strncmp(cp, "ip6-bytestring", + sizeof("ip6-bytestring") - 1)) { + statp->options |= RES_USEBSTRING; } else if (!strncmp(cp, "rotate", sizeof("rotate") - 1)) { statp->options |= RES_ROTATE; } else if (!strncmp(cp, "no-check-names", |