From: W.C.A. Wijngaards Date: Wed, 5 Jan 2022 15:14:47 +0000 (+0100) Subject: - Fix #598: Fix unbound-checkconf fatal error: module conf X-Git-Tag: release-1.15.0rc1~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eccfe3e1f560aa683b669403b72023975a03b844;p=thirdparty%2Funbound.git - Fix #598: Fix unbound-checkconf fatal error: module conf 'respip dns64 validator iterator' is not known to work. --- diff --git a/doc/Changelog b/doc/Changelog index cb1ff554f..af5cfedee 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -6,6 +6,8 @@ the iterator loop. - Fix for #596: add unit test for nsdname trigger and signal unset RA. - Fix for #596: add unit test for nsip trigger and signal unset RA. + - Fix #598: Fix unbound-checkconf fatal error: module conf + 'respip dns64 validator iterator' is not known to work. 4 January 2022: Wouter - Fix #596: unset the RA bit when a query is blocked by an unbound diff --git a/smallapp/unbound-checkconf.c b/smallapp/unbound-checkconf.c index 34c7d11bc..c667f8115 100644 --- a/smallapp/unbound-checkconf.c +++ b/smallapp/unbound-checkconf.c @@ -691,6 +691,8 @@ morechecks(struct config_file* cfg) && strcmp(cfg->module_conf, "dns64 iterator") != 0 && strcmp(cfg->module_conf, "respip iterator") != 0 && strcmp(cfg->module_conf, "respip validator iterator") != 0 + && strcmp(cfg->module_conf, "respip dns64 validator iterator") != 0 + && strcmp(cfg->module_conf, "respip dns64 iterator") != 0 #ifdef WITH_PYTHONMODULE && strcmp(cfg->module_conf, "python iterator") != 0 && strcmp(cfg->module_conf, "python respip iterator") != 0