mirror of
https://github.com/pi-hole/dnsmasq.git
synced 2025-12-19 10:18:25 +00:00
Fix paren blunder in aaba66efbd
Thanks to Dominik Derigs for spotting this.
This commit is contained in:
@@ -228,7 +228,7 @@ void tftp_request(struct listener *listen, time_t now)
|
||||
#ifdef HAVE_DHCP
|
||||
/* allowed interfaces are the same as for DHCP */
|
||||
for (tmp = daemon->dhcp_except; tmp; tmp = tmp->next)
|
||||
if (tmp->name && (tmp->flags & (INAME_4 | INAME_6) == (INAME_4 | INAME_6)) &&
|
||||
if (tmp->name && (tmp->flags & INAME_4) && (tmp->flags & INAME_6) &&
|
||||
wildcard_match(tmp->name, name))
|
||||
return;
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user