From d24fb6b03295c7cbde967c9e0f965624e29d926c Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Mon, 5 Mar 2018 13:40:20 +1100 Subject: [PATCH] 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) --- bin/named/server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/named/server.c b/bin/named/server.c index 0a5cb21f38..ff4c8b66f7 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