]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
allow unquoted response-policy zone names
authorEvan Hunt <each@isc.org>
Mon, 29 Oct 2018 06:25:46 +0000 (23:25 -0700)
committerEvan Hunt <each@isc.org>
Mon, 29 Oct 2018 16:25:35 +0000 (12:25 -0400)
CHANGES
lib/isccfg/namedconf.c

diff --git a/CHANGES b/CHANGES
index e01ce1b2f5818743885e879fa28c4e6d54e36a36..67c062fd21d8223fa0871eed72f6b97656334b98 100644 (file)
--- 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
index 3e537a3a60c6c17093c264e1014c0a8276dcbf76..5af0396034edac5b9b856bc7a7a364cf586e9235 100644 (file)
@@ -1590,7 +1590,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,