From: Evan Hunt Date: Sat, 26 Apr 2014 17:16:37 +0000 (-0700) Subject: [master] log static-stub correctly when removing X-Git-Tag: v9.11.0a1~1712 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=eb1a7730f013e9a16d709c9ee8f41d73cde3680e;p=thirdparty%2Fbind9.git [master] log static-stub correctly when removing 3822. [bug] Log the correct type of static-stub zones when removing them. [RT #35842] --- diff --git a/CHANGES b/CHANGES index 156630eb330..fff55247f21 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 a1581152207..f830be49bfa 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;