2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

572. [bug] Quoted strings were not accepted as key names in

address match lists.
This commit is contained in:
Andreas Gustafsson
2000-11-22 18:20:05 +00:00
parent ca41de74d2
commit a6dbd6b660
2 changed files with 6 additions and 2 deletions

View File

@@ -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]

View File

@@ -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 <config.h>
@@ -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;