2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-03 16:15:27 +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 571. [bug] It was possible to create an rdataset of singleton
type which had more than one rdata. [RT #154] type which had more than one rdata. [RT #154]
[RT #279] [RT #279]

View File

@@ -33,7 +33,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * 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> #include <config.h>
@@ -3276,7 +3276,7 @@ address_match_element: address_match_simple
} }
$$ = $2; $$ = $2;
} }
| L_SEC_KEY L_STRING | L_SEC_KEY any_string
{ {
dns_c_ipmatchelement_t *ime = NULL; dns_c_ipmatchelement_t *ime = NULL;