From 1c42e5f3f954183a7e56264fe724d142fe394dbc Mon Sep 17 00:00:00 2001 From: Wouter Wijngaards Date: Fri, 10 Oct 2014 07:07:58 +0000 Subject: [PATCH] - Fix unbound-checkconf check for module config with dns64 module. git-svn-id: file:///svn/unbound/trunk@3238 be551aaa-1e26-0410-a405-d3ace91eadb9 --- doc/Changelog | 3 +++ smallapp/unbound-checkconf.c | 7 +++++++ 2 files changed, 10 insertions(+) diff --git a/doc/Changelog b/doc/Changelog index 68f481b30..4408cbd53 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +10 October 2014: Wouter + - Fix unbound-checkconf check for module config with dns64 module. + 6 October 2014: Wouter - Fix #614: man page variable substitution bug. 6 October 2014: Willem diff --git a/smallapp/unbound-checkconf.c b/smallapp/unbound-checkconf.c index e26ae91c4..e83867f26 100644 --- a/smallapp/unbound-checkconf.c +++ b/smallapp/unbound-checkconf.c @@ -392,10 +392,17 @@ morechecks(struct config_file* cfg, const char* fname) if(strcmp(cfg->module_conf, "iterator") != 0 && strcmp(cfg->module_conf, "validator iterator") != 0 + && strcmp(cfg->module_conf, "dns64 validator iterator") != 0 + && strcmp(cfg->module_conf, "dns64 iterator") != 0 #ifdef WITH_PYTHONMODULE && strcmp(cfg->module_conf, "python iterator") != 0 && strcmp(cfg->module_conf, "python validator iterator") != 0 && strcmp(cfg->module_conf, "validator python iterator") != 0 + && strcmp(cfg->module_conf, "dns64 python iterator") != 0 + && strcmp(cfg->module_conf, "dns64 python validator iterator") != 0 + && strcmp(cfg->module_conf, "dns64 validator python iterator") != 0 + && strcmp(cfg->module_conf, "python dns64 iterator") != 0 + && strcmp(cfg->module_conf, "python dns64 validator iterator") != 0 #endif ) { fatal_exit("module conf '%s' is not known to work", -- 2.47.2