mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 06:25:31 +00:00
[master] clarify error
3779. [cleanup] Clarify the error message when using an option that was not enabled at compile time. [RT #35504]
This commit is contained in:
3
CHANGES
3
CHANGES
@@ -1,3 +1,6 @@
|
||||
3779. [cleanup] Clarify the error message when using an option
|
||||
that was not enabled at compile time. [RT #35504]
|
||||
|
||||
3778. [bug] Log a warning when the wrong address family is
|
||||
used in "listen-on" or "listen-on-v6". [RT #17848]
|
||||
|
||||
|
@@ -1306,8 +1306,9 @@ cfg_parse_mapbody(cfg_parser_t *pctx, const cfg_type_t *type, cfg_obj_t **ret)
|
||||
"not implemented", clause->name);
|
||||
|
||||
if ((clause->flags & CFG_CLAUSEFLAG_NOTCONFIGURED) != 0) {
|
||||
cfg_parser_warning(pctx, 0, "option '%s' is not "
|
||||
"configured", clause->name);
|
||||
cfg_parser_warning(pctx, 0, "option '%s' was not "
|
||||
"enabled at compile time",
|
||||
clause->name);
|
||||
result = ISC_R_FAILURE;
|
||||
goto cleanup;
|
||||
}
|
||||
|
Reference in New Issue
Block a user