diff --git a/CHANGES b/CHANGES index 156630eb33..fff55247f2 100644 --- a/CHANGES +++ b/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 update and transaction support. Thanks to Marty Lee for the contribution. [RT #35656] diff --git a/bin/named/server.c b/bin/named/server.c index a158115220..f830be49bf 100644 --- a/bin/named/server.c +++ b/bin/named/server.c @@ -4998,6 +4998,9 @@ removed(dns_zone_t *zone, void *uap) { case dns_zone_stub: type = "stub"; break; + case dns_zone_staticstub: + type = "static-stub"; + break; case dns_zone_redirect: type = "redirect"; break;