mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-15 15:12:56 -04:00
Corrected names of master zone bits checked in
dns_c_zone_getmaxtranstimeout() and dns_c_zone_getmaxtransidleout().
This commit is contained in:
parent
eafe61bee8
commit
0b73e4eb53
1 changed files with 2 additions and 2 deletions
|
|
@ -2606,7 +2606,7 @@ dns_c_zone_getmaxtranstimeout(dns_c_zone_t *zone,
|
|||
|
||||
switch (zone->ztype) {
|
||||
case dns_c_zone_master:
|
||||
if (DNS_C_CHECKBIT(SZ_MAX_TRANS_TIME_OUT_BIT,
|
||||
if (DNS_C_CHECKBIT(MZ_MAX_TRANS_TIME_OUT_BIT,
|
||||
&zone->u.mzone.setflags)) {
|
||||
*retval = zone->u.mzone.max_trans_time_out;
|
||||
res = ISC_R_SUCCESS;
|
||||
|
|
@ -2719,7 +2719,7 @@ dns_c_zone_getmaxtransidleout(dns_c_zone_t *zone,
|
|||
|
||||
switch (zone->ztype) {
|
||||
case dns_c_zone_master:
|
||||
if (DNS_C_CHECKBIT(SZ_MAX_TRANS_IDLE_OUT_BIT,
|
||||
if (DNS_C_CHECKBIT(MZ_MAX_TRANS_IDLE_OUT_BIT,
|
||||
&zone->u.mzone.setflags)) {
|
||||
*retval = zone->u.mzone.max_trans_idle_out;
|
||||
res = ISC_R_SUCCESS;
|
||||
|
|
|
|||
Loading…
Reference in a new issue