mirror of
https://github.com/pi-hole/dnsmasq.git
synced 2025-12-19 18:28:25 +00:00
Fix crash in DHCPv6 renew, introduced in refactor.
This commit is contained in:
@@ -798,8 +798,8 @@ static int dhcp6_no_relay(int msg_type, struct in6_addr *link_address, struct dh
|
||||
}
|
||||
|
||||
|
||||
if ((this_context != address6_available(context, req_addr, tagif)) ||
|
||||
(this_context != address6_valid(context, req_addr, tagif)))
|
||||
if ((this_context = address6_available(context, req_addr, tagif)) ||
|
||||
(this_context = address6_valid(context, req_addr, tagif)))
|
||||
{
|
||||
get_context_tag(&state, this_context);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user