mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Allow DNS_RPZ_POLICY_ERROR to be converted to a string
(cherry picked from commit f498d2db0d)
This commit is contained in:
parent
a742b7c5d7
commit
3b490950af
1 changed files with 3 additions and 0 deletions
|
|
@ -279,6 +279,9 @@ dns_rpz_policy2str(dns_rpz_policy_t policy) {
|
|||
case DNS_RPZ_POLICY_DNS64:
|
||||
str = "DNS64";
|
||||
break;
|
||||
case DNS_RPZ_POLICY_ERROR:
|
||||
str = "ERROR";
|
||||
break;
|
||||
default:
|
||||
UNREACHABLE();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue