From eb1a7730f013e9a16d709c9ee8f41d73cde3680e Mon Sep 17 00:00:00 2001 From: Evan Hunt Date: Sat, 26 Apr 2014 10:16:37 -0700 Subject: [PATCH] [master] log static-stub correctly when removing 3822. [bug] Log the correct type of static-stub zones when removing them. [RT #35842] --- CHANGES | 3 +++ bin/named/server.c | 3 +++ 2 files changed, 6 insertions(+) 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;