mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-01-16 19:52:55 -05:00
The change fixes module print when specified module is unknown. On
example config:
server:
module-config: "respip valdator iterator"
Before the change printed error looked like:
error: Unknown value in module-config, module: ''. This module is
not present (not compiled in), See the list of linked modules with
unbound -V
After the change module is printed as expected:
error: Unknown value in module-config, module: 'valdator'. This
module is not present (not compiled in), See the list of linked
modules with unbound -V
Module truncation happens because parse error does not guarantee that
leading whitespace is removed by `module_factory()` call.
The change always removes leading whitespace (if present).
|
||
|---|---|---|
| .. | ||
| cache | ||
| authzone.c | ||
| authzone.h | ||
| listen_dnsport.c | ||
| listen_dnsport.h | ||
| localzone.c | ||
| localzone.h | ||
| mesh.c | ||
| mesh.h | ||
| modstack.c | ||
| modstack.h | ||
| outbound_list.c | ||
| outbound_list.h | ||
| outside_network.c | ||
| outside_network.h | ||
| rpz.c | ||
| rpz.h | ||
| view.c | ||
| view.h | ||