2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

Allow DNS_RPZ_POLICY_ERROR to be converted to a string

This commit is contained in:
Mark Andrews
2022-05-04 17:03:15 +10:00
parent 8fb72012e3
commit f498d2db0d

View File

@@ -267,6 +267,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();
}