summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/dns.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/plugins/dns.py')
-rw-r--r--ipalib/plugins/dns.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ipalib/plugins/dns.py b/ipalib/plugins/dns.py
index a23d1b823..dabab8405 100644
--- a/ipalib/plugins/dns.py
+++ b/ipalib/plugins/dns.py
@@ -2197,6 +2197,8 @@ class dnsrecord(LDAPObject):
def postprocess_record(self, record, **options):
if options.get('structured', False):
for attr in record.keys():
+ # attributes in LDAPEntry may not be normalized
+ attr = attr.lower()
try:
param = self.params[attr]
except KeyError: