diff --git a/CHANGES b/CHANGES index 405e35b277cd186784f28d4cacdb41a23db13654..a8607aad5a096cd89eeb41df3e5bed4a30d48c04 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ +5066. [cleanup] Allow unquoted strings to be used as a zone names + in response-policy statements. [GL #641] + 5065. [bug] Only set IPV6_USE_MIN_MTU on IPv6. [GL #553] 5064. [test] Initalize TZ environment variable before calling diff --git a/lib/isccfg/namedconf.c b/lib/isccfg/namedconf.c index 54c3ebc34f6a97709925639e26c88363b9a184b7..30815fca06916c0f1841d6f43ec62f74b235e633 100644 --- a/lib/isccfg/namedconf.c +++ b/lib/isccfg/namedconf.c @@ -1586,7 +1586,7 @@ cfg_doc_kv_tuple(cfg_printer_t *pctx, const cfg_type_t *type) { } } -static keyword_type_t zone_kw = {"zone", &cfg_type_qstring}; +static keyword_type_t zone_kw = {"zone", &cfg_type_astring}; static cfg_type_t cfg_type_rpz_zone = { "zone", parse_keyvalue, print_keyvalue, doc_keyvalue, &cfg_rep_string,