mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-02 15:45:25 +00:00
[master] log static-stub correctly when removing
3822. [bug] Log the correct type of static-stub zones when removing them. [RT #35842]
This commit is contained in:
3
CHANGES
3
CHANGES
@@ -1,3 +1,6 @@
|
|||||||
|
3822. [bug] Log the correct type of static-stub zones when
|
||||||
|
removing them. [RT #35842]
|
||||||
|
|
||||||
3821. [contrib] Added a new "mysqldyn" DLZ module with dynamic
|
3821. [contrib] Added a new "mysqldyn" DLZ module with dynamic
|
||||||
update and transaction support. Thanks to Marty
|
update and transaction support. Thanks to Marty
|
||||||
Lee for the contribution. [RT #35656]
|
Lee for the contribution. [RT #35656]
|
||||||
|
@@ -4998,6 +4998,9 @@ removed(dns_zone_t *zone, void *uap) {
|
|||||||
case dns_zone_stub:
|
case dns_zone_stub:
|
||||||
type = "stub";
|
type = "stub";
|
||||||
break;
|
break;
|
||||||
|
case dns_zone_staticstub:
|
||||||
|
type = "static-stub";
|
||||||
|
break;
|
||||||
case dns_zone_redirect:
|
case dns_zone_redirect:
|
||||||
type = "redirect";
|
type = "redirect";
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user