From: Steven Barth Date: Fri, 23 May 2014 06:29:34 +0000 (+0200) Subject: filter DNS-domain from passthru X-Git-Tag: debian/1.1+git20160131-1~60 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=odhcp6c.git;a=commitdiff_plain;h=b38d8871977d3b97cc3c3e7f2ad203852166c661 filter DNS-domain from passthru --- diff --git a/src/dhcpv6.c b/src/dhcpv6.c index 4fbff84..df6e120 100644 --- a/src/dhcpv6.c +++ b/src/dhcpv6.c @@ -980,6 +980,7 @@ static int dhcpv6_handle_reply(enum dhcpv6_msg orig, _unused const int rc, odhcp6c_add_state(STATE_DNS, odata, olen); } else if (otype == DHCPV6_OPT_DNS_DOMAIN) { odhcp6c_add_state(STATE_SEARCH, odata, olen); + passthru = false; } else if (otype == DHCPV6_OPT_SNTP_SERVERS) { if (olen % 16 == 0) odhcp6c_add_state(STATE_SNTP_IP, odata, olen);