mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 02:32:03 -04:00
572. [bug] Quoted strings were not accepted as key names in
address match lists.
This commit is contained in:
parent
ca41de74d2
commit
a6dbd6b660
2 changed files with 6 additions and 2 deletions
4
CHANGES
4
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]
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue