From: W.C.A. Wijngaards Date: Mon, 16 Mar 2020 08:44:38 +0000 (+0100) Subject: - Fix #192: In the unbound-checkconf tool, the module config of X-Git-Tag: release-1.11.0~96 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e4268663e63ef57ce3d76e2674fed902a33b1dea;p=thirdparty%2Funbound.git - Fix #192: In the unbound-checkconf tool, the module config of dns64 subnetcache respip validator iterator is whitelisted, it was reported it seems to work. --- diff --git a/doc/Changelog b/doc/Changelog index ea8eeb528..08582e3d7 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,8 @@ +16 March 2020: Wouter + - Fix #192: In the unbound-checkconf tool, the module config of + dns64 subnetcache respip validator iterator is whitelisted, it was + reported it seems to work. + 12 March 2020: Wouter - Fix compile of test tools without protobuf. diff --git a/smallapp/unbound-checkconf.c b/smallapp/unbound-checkconf.c index 34902f363..685f75b39 100644 --- a/smallapp/unbound-checkconf.c +++ b/smallapp/unbound-checkconf.c @@ -600,6 +600,8 @@ morechecks(struct config_file* cfg) && strcmp(cfg->module_conf, "respip subnetcache validator iterator") != 0 && strcmp(cfg->module_conf, "dns64 subnetcache iterator") != 0 && strcmp(cfg->module_conf, "dns64 subnetcache validator iterator") != 0 + && strcmp(cfg->module_conf, "dns64 subnetcache respip iterator") != 0 + && strcmp(cfg->module_conf, "dns64 subnetcache respip validator iterator") != 0 #endif #if defined(WITH_PYTHONMODULE) && defined(CLIENT_SUBNET) && strcmp(cfg->module_conf, "python subnetcache iterator") != 0