From: Mark Andrews Date: Mon, 5 Mar 2018 02:40:20 +0000 (+1100) Subject: fix log message about 'dnsrps-enable yes;' when not configured (this will only ever... X-Git-Tag: v9.13.0~116^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d24fb6b03295c7cbde967c9e0f965624e29d926c;p=thirdparty%2Fbind9.git fix log message about 'dnsrps-enable yes;' when not configured (this will only ever be emitted if the parser is incorrectly updated as the error is normally caught there) --- diff --git a/bin/named/server.c b/bin/named/server.c index 0a5cb21f382..ff4c8b66f7d 100644 --- a/bin/named/server.c +++ b/bin/named/server.c @@ -2311,7 +2311,7 @@ configure_rpz(dns_view_t *view, const cfg_obj_t **maps, if (dnsrps_enabled) { cfg_obj_log(rpz_obj, named_g_lctx, DNS_RPZ_ERROR_LEVEL, "\"dnsrps-enable yes\" but" - " with `./configure --enable-dnsrps`"); + " without `./configure --enable-dnsrps`"); return (ISC_R_FAILURE); } #else