diff --git a/CHANGES b/CHANGES index e70513e66c722194c12e5b6122fd55c83955a597..06db255ff800032ff744ab38e2aa9be2d92ebdf1 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 4dd427e3a89637997c9687b778b187f413294c4e..1132841403d4ebff47b7e5a9f596a3a52517913f 100644 --- a/lib/isccfg/namedconf.c +++ b/lib/isccfg/namedconf.c @@ -1461,7 +1461,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,