mirror of
https://github.com/pi-hole/dnsmasq.git
synced 2025-12-19 18:28:25 +00:00
Fix bug added in 2.80 non-terminal code which returns NODATA instead of NXDOMAIN.
Thanks to Sven Muleller and Maciej Żenczykowski for work on this. https://bugzilla.redhat.com/show_bug.cgi?id=1674067 refers.
This commit is contained in:
committed by
Simon Kelley
parent
4219adeeef
commit
162e5e0062
@@ -790,6 +790,7 @@ int cache_find_non_terminal(char *name, time_t now)
|
||||
if (!is_outdated_cname_pointer(crecp) &&
|
||||
!is_expired(now, crecp) &&
|
||||
(crecp->flags & F_FORWARD) &&
|
||||
!(crecp->flags & F_NXDOMAIN) &&
|
||||
hostname_isequal(name, cache_get_name(crecp)))
|
||||
return 1;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user