From e4268663e63ef57ce3d76e2674fed902a33b1dea Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Mon, 16 Mar 2020 09:44:38 +0100 Subject: [PATCH] - 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. --- doc/Changelog | 5 +++++ smallapp/unbound-checkconf.c | 2 ++ 2 files changed, 7 insertions(+) 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