2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

3897. [bug] RPZ summary information was not properly being updated

after a AXFR resulting in changes sometimes being
                        ignored.  [RT #35885]
This commit is contained in:
Mark Andrews
2014-07-22 10:57:58 +10:00
parent a1dee90bfb
commit ac5ed74860
10 changed files with 95 additions and 8 deletions

View File

@@ -248,6 +248,9 @@ dns_rpz_policy2str(dns_rpz_policy_t policy) {
case DNS_RPZ_POLICY_WILDCNAME:
str = "CNAME";
break;
case DNS_RPZ_POLICY_MISS:
str = "MISS";
break;
default:
str = "";
POST(str);
@@ -1653,6 +1656,7 @@ dns_rpz_ready(dns_rpz_zones_t *rpzs,
load_rpzs->rbt = rbt;
rpzs->total_triggers = load_rpzs->total_triggers;
rpzs->have = load_rpzs->have;
UNLOCK(&rpzs->search_lock);