diff --git a/doc/Changelog b/doc/Changelog index 9fb1edd6b..258d3fd10 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,7 @@ +21 February 2019: Wouter + - Fix the error for unknown module in module-config is understandable, + and explains it was not compiled in and where to see the list. + 20 February 2019: Wouter - Fix pythonmod include and sockaddr_un ifdefs for compile on Windows, and for libunbound. diff --git a/services/modstack.c b/services/modstack.c index 136245a96..c6e5fd01e 100644 --- a/services/modstack.c +++ b/services/modstack.c @@ -113,7 +113,9 @@ modstack_config(struct module_stack* stack, const char* module_conf) for(i=0; inum; i++) { stack->mod[i] = module_factory(&module_conf); if(!stack->mod[i]) { - log_err("Unknown value for next module: '%s'", + log_err("Unknown value in module-config, module: '%s'." + " This module is not present (not compiled in)," + " See the list of linked modules with unbound -h", module_conf); return 0; }