]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
[master] log static-stub correctly when removing
authorEvan Hunt <each@isc.org>
Sat, 26 Apr 2014 17:16:37 +0000 (10:16 -0700)
committerEvan Hunt <each@isc.org>
Sat, 26 Apr 2014 17:16:37 +0000 (10:16 -0700)
3822. [bug] Log the correct type of static-stub zones when
removing them. [RT #35842]

CHANGES
bin/named/server.c

diff --git a/CHANGES b/CHANGES
index 156630eb3300af49e46db66d715ad00be7af3a3d..fff55247f211e9c9319a124571970ec7880202fe 100644 (file)
--- 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]
index a15811522072ca744dae65140b0af5cce21f2527..f830be49bfaa743ac3189467b077dd89cd27de8a 100644 (file)
@@ -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;