mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 22:45:39 +00:00
[master] normalize domain names for trailing dots
4416. [bug] dnssec-keymgr: Domain names in policy files could fail to match due to trailing dots. [RT #42807] Patch submitted by Armin Pech (mail@arminpech.de).
This commit is contained in:
@@ -535,9 +535,9 @@ class dnssec_policy:
|
||||
|
||||
def p_zone_policy(self, p):
|
||||
"zone_policy : ZONE name new_policy policy_option_group SEMI"
|
||||
self.current.name = p[2]
|
||||
self.current.name = p[2].rstrip('.')
|
||||
self.current.is_zone = True
|
||||
self.zone_policy[p[2].lower()] = self.current
|
||||
self.zone_policy[p[2].rstrip('.').lower()] = self.current
|
||||
pass
|
||||
|
||||
def p_named_policy(self, p):
|
||||
|
Reference in New Issue
Block a user