mirror of
https://github.com/pi-hole/dnsmasq.git
synced 2025-12-19 10:18:25 +00:00
Fix botch in determining if auth query is local.
This commit is contained in:
@@ -865,13 +865,14 @@ void receive_query(struct listener *listen, time_t now)
|
|||||||
|
|
||||||
#ifdef HAVE_AUTH
|
#ifdef HAVE_AUTH
|
||||||
/* find queries for zones we're authoritative for, and answer them directly */
|
/* find queries for zones we're authoritative for, and answer them directly */
|
||||||
for (zone = daemon->auth_zones; zone; zone = zone->next)
|
if (!auth_dns)
|
||||||
if (in_zone(zone, daemon->namebuff, NULL))
|
for (zone = daemon->auth_zones; zone; zone = zone->next)
|
||||||
{
|
if (in_zone(zone, daemon->namebuff, NULL))
|
||||||
auth_dns = 1;
|
{
|
||||||
local_auth = 1;
|
auth_dns = 1;
|
||||||
break;
|
local_auth = 1;
|
||||||
}
|
break;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -973,13 +974,14 @@ unsigned char *tcp_request(int confd, time_t now,
|
|||||||
|
|
||||||
#ifdef HAVE_AUTH
|
#ifdef HAVE_AUTH
|
||||||
/* find queries for zones we're authoritative for, and answer them directly */
|
/* find queries for zones we're authoritative for, and answer them directly */
|
||||||
for (zone = daemon->auth_zones; zone; zone = zone->next)
|
if (!auth_dns)
|
||||||
if (in_zone(zone, daemon->namebuff, NULL))
|
for (zone = daemon->auth_zones; zone; zone = zone->next)
|
||||||
{
|
if (in_zone(zone, daemon->namebuff, NULL))
|
||||||
auth_dns = 1;
|
{
|
||||||
local_auth = 1;
|
auth_dns = 1;
|
||||||
break;
|
local_auth = 1;
|
||||||
}
|
break;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user