mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-22 09:20:51 -05:00
1104. [bug] Invalid arguments to the transfer-format option
could cause an assertion failure. [RT #1995]
This commit is contained in:
parent
72499be79f
commit
7e2f4ceafa
2 changed files with 5 additions and 2 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
1104. [bug] Invalid arguments to the transfer-format option
|
||||
could cause an assertion failure. [RT #1995]
|
||||
|
||||
1103. [port] OpenUNIX 8 support (ifconfig.sh). [RT #1970]
|
||||
|
||||
1102. [doc] Note that query logging is enabled by directing the
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: parser.c,v 1.85 2001/10/26 19:35:03 gson Exp $ */
|
||||
/* $Id: parser.c,v 1.86 2001/11/05 18:19:46 gson Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -926,7 +926,7 @@ view_clauses[] = {
|
|||
{ "lame-ttl", &cfg_type_uint32, 0 },
|
||||
{ "max-ncache-ttl", &cfg_type_uint32, 0 },
|
||||
{ "max-cache-ttl", &cfg_type_uint32, 0 },
|
||||
{ "transfer-format", &cfg_type_ustring, 0 },
|
||||
{ "transfer-format", &cfg_type_transferformat, 0 },
|
||||
{ "max-cache-size", &cfg_type_sizenodefault, 0 },
|
||||
{ "max-adb-size", &cfg_type_sizenodefault, 0 },
|
||||
{ "check-names", &cfg_type_checknames,
|
||||
|
|
|
|||
Loading…
Reference in a new issue