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

1044. [buf] Specifying allow-transfer, notify-source or

notify-source-v6 in a stub zone was not treated as
                        a error.
This commit is contained in:
Mark Andrews
2001-10-11 04:52:21 +00:00
parent bb60abb445
commit 3a92768cad
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
1044. [buf] Specifying allow-transfer, notify-source or
notify-source-v6 in a stub zone was not treated as
a error.
1043. [bug] Specifying a transfer-source or transfer-source-v6
option in the zone statement for a master zone was

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: check.c,v 1.3 2001/10/11 01:55:03 gson Exp $ */
/* $Id: check.c,v 1.4 2001/10/11 04:52:21 marka Exp $ */
#include <config.h>
@@ -121,7 +121,7 @@ check_zoneconf(cfg_obj_t *zconfig, isc_symtab_t *symtab,
static optionstable options[] = {
{ "allow-query", MASTERZONE | SLAVEZONE | STUBZONE },
{ "allow-transfer", MASTERZONE | SLAVEZONE | STUBZONE },
{ "allow-transfer", MASTERZONE | SLAVEZONE },
{ "notify", MASTERZONE | SLAVEZONE },
{ "also-notify", MASTERZONE | SLAVEZONE },
{ "dialup", MASTERZONE | SLAVEZONE | STUBZONE },
@@ -129,6 +129,8 @@ check_zoneconf(cfg_obj_t *zconfig, isc_symtab_t *symtab,
{ "forwarders", MASTERZONE | SLAVEZONE | STUBZONE | FORWARDZONE},
{ "maintain-ixfr-base", MASTERZONE | SLAVEZONE },
{ "max-ixfr-log-size", MASTERZONE | SLAVEZONE },
{ "notify-source", MASTERZONE | SLAVEZONE },
{ "notify-source-v6", MASTERZONE | SLAVEZONE },
{ "transfer-source", SLAVEZONE | STUBZONE },
{ "transfer-source-v6", SLAVEZONE | STUBZONE },
{ "max-transfer-time-in", SLAVEZONE | STUBZONE },