]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
pullup:
authorBrian Wellington <source@isc.org>
Wed, 22 Nov 2000 20:18:03 +0000 (20:18 +0000)
committerBrian Wellington <source@isc.org>
Wed, 22 Nov 2000 20:18:03 +0000 (20:18 +0000)
 572.   [bug]           Quoted strings were not accepted as key names in
                        address match lists.

CHANGES
lib/dns/config/confparser.y

diff --git a/CHANGES b/CHANGES
index 96889858a91cda25a9289c3fc963b5a60fa029c2..0c359c15767e8bd566dd52db2d732c64832e2424 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,7 @@
 
+ 572.  [bug]           Quoted strings were not accepted as key names in
+                       address match lists.
+
  554.  [bug]           In some cases, not all of the dnssec tools were
                        properly installed.
 
index 5a2b04b3b7edccd4ec4b9d9d3cee1af6e8135ef2..c09fd120761f8bdc1970b3aaec305857f4112121 100644 (file)
@@ -16,7 +16,7 @@
  * SOFTWARE.
  */
 
-/* $Id: confparser.y,v 1.99.2.5 2000/09/13 23:13:25 explorer Exp $ */
+/* $Id: confparser.y,v 1.99.2.6 2000/11/22 20:18:03 bwelling Exp $ */
 
 #include <config.h>
 
@@ -2942,7 +2942,7 @@ address_match_element: address_match_simple
                }
                $$ = $2;
        }
-       | L_SEC_KEY L_STRING
+       | L_SEC_KEY any_string
        {
                dns_c_ipmatchelement_t *ime = NULL;