Allow DNS_RPZ_POLICY_ERROR to be converted to a string

(cherry picked from commit f498d2db0d)
This commit is contained in:
Mark Andrews 2022-05-04 17:03:15 +10:00
parent a742b7c5d7
commit 3b490950af

View file

@ -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();
}