diff --git a/CHANGES b/CHANGES index 39877c05d6..e1b3b17788 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ + + 572. [bug] Quoted strings were not accepted as key names in + address match lists. + 571. [bug] It was possible to create an rdataset of singleton type which had more than one rdata. [RT #154] [RT #279] diff --git a/lib/dns/config/confparser.y.dirty b/lib/dns/config/confparser.y.dirty index cfd8690bd0..787d1f1b04 100644 --- a/lib/dns/config/confparser.y.dirty +++ b/lib/dns/config/confparser.y.dirty @@ -33,7 +33,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: confparser.y.dirty,v 1.30 2000/11/22 00:30:37 mws Exp $ */ +/* $Id: confparser.y.dirty,v 1.31 2000/11/22 18:20:05 gson Exp $ */ #include @@ -3276,7 +3276,7 @@ address_match_element: address_match_simple } $$ = $2; } - | L_SEC_KEY L_STRING + | L_SEC_KEY any_string { dns_c_ipmatchelement_t *ime = NULL;