Apply patch #9737: Fix DHCPv6 DNS server assignment

(cherry picked from commit 941300c21c)
This commit is contained in:
Dirk Ziegelmeier 2019-01-28 14:19:15 +01:00 committed by Simon Goldschmidt
parent 484f0fbafa
commit 1892f445e2

View File

@ -527,7 +527,7 @@ dhcp6_handle_config_reply(struct netif *netif, struct pbuf *p_msg_in)
u16_t idx;
u8_t n;
memset(&dns_addr, 0, sizeof(dns_addr));
ip_addr_set_zero_ip6(&dns_addr);
dns_addr6 = ip_2_ip6(&dns_addr);
for (n = 0, idx = op_start; (idx < op_start + op_len) && (n < LWIP_DHCP6_PROVIDE_DNS_SERVERS);
n++, idx += sizeof(struct ip6_addr_packed)) {