mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-28 02:30:57 -04:00
[v9_10] log static-stub correctly when removing
3822. [bug] Log the correct type of static-stub zones when
removing them. [RT #35842]
(cherry picked from commit eb1a7730f0)
This commit is contained in:
parent
37380ec318
commit
00e9952c41
2 changed files with 6 additions and 0 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
3822. [bug] Log the correct type of static-stub zones when
|
||||
removing them. [RT #35842]
|
||||
|
||||
3819. [bug] NSEC3 hashes need to be able to be entered and
|
||||
displayed without padding. This is not a issue for
|
||||
currently defined algorithms but may be for future
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue