From: Brian Wellington Date: Wed, 22 Nov 2000 20:18:03 +0000 (+0000) Subject: pullup: X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b7ed070c468f227c4054d8a559b67d61d680ca1a;p=thirdparty%2Fbind9.git pullup: 572. [bug] Quoted strings were not accepted as key names in address match lists. --- diff --git a/CHANGES b/CHANGES index 96889858a91..0c359c15767 100644 --- 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. diff --git a/lib/dns/config/confparser.y b/lib/dns/config/confparser.y index 5a2b04b3b7e..c09fd120761 100644 --- a/lib/dns/config/confparser.y +++ b/lib/dns/config/confparser.y @@ -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 @@ -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;