From: Mark Andrews Date: Wed, 4 May 2022 07:03:15 +0000 (+1000) Subject: Allow DNS_RPZ_POLICY_ERROR to be converted to a string X-Git-Tag: v9.19.1~5^2~1 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=f498d2db0d9f3344d314956253beda73ac29ea4f;p=thirdparty%2Fbind9.git Allow DNS_RPZ_POLICY_ERROR to be converted to a string --- diff --git a/lib/dns/rpz.c b/lib/dns/rpz.c index 0e6cb31be83..4cdb2eb1ce3 100644 --- a/lib/dns/rpz.c +++ b/lib/dns/rpz.c @@ -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(); }