2
0
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:
Evan Hunt
2014-03-07 15:59:55 -08:00
parent 4b1a933811
commit 9ba2cef72d
2 changed files with 6 additions and 2 deletions

View File

@@ -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]

View File

@@ -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;
}