mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-04 19:52:03 -04:00
Move onto the next RRSIG on DNS_R_SIGEXPIRED or DNS_R_SIGFUTURE
This commit is contained in:
parent
1f1685ef67
commit
82ca80c2e9
1 changed files with 4 additions and 0 deletions
|
|
@ -1590,6 +1590,10 @@ validate_answer(dns_validator_t *val, bool resume) {
|
|||
}
|
||||
|
||||
vresult = verify(val, val->key, &rdata, val->siginfo->keyid);
|
||||
if (vresult == DNS_R_SIGEXPIRED || vresult == DNS_R_SIGFUTURE) {
|
||||
resume = false;
|
||||
continue;
|
||||
}
|
||||
if (vresult != ISC_R_SUCCESS) {
|
||||
val->failed = true;
|
||||
validator_log(val, ISC_LOG_DEBUG(3),
|
||||
|
|
|
|||
Loading…
Reference in a new issue