mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
4744. [bug] Suppress trust-anchor-telementry queries if
validation is disabled. [RT #46131]
This commit is contained in:
parent
83b5464a1f
commit
dc0a792d94
2 changed files with 9 additions and 2 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
4744. [bug] Suppress trust-anchor-telementry queries if
|
||||
validation is disabled. [RT #46131]
|
||||
|
||||
4743. [func] Exclude trust-anchor-telementry queries from
|
||||
synth-from-dnssec processing. [RT #46123]
|
||||
|
||||
|
|
|
|||
|
|
@ -6551,12 +6551,16 @@ tat_timer_tick(isc_task_t *task, isc_event_t *event) {
|
|||
view != NULL;
|
||||
view = ISC_LIST_NEXT(view, link))
|
||||
{
|
||||
if (!view->trust_anchor_telemetry)
|
||||
if (!view->trust_anchor_telemetry ||
|
||||
!view->enablevalidation)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
result = dns_view_getsecroots(view, &secroots);
|
||||
if (result != ISC_R_SUCCESS)
|
||||
if (result != ISC_R_SUCCESS) {
|
||||
continue;
|
||||
}
|
||||
|
||||
arg.view = view;
|
||||
arg.task = task;
|
||||
|
|
|
|||
Loading…
Reference in a new issue