ipadnsrecord: Fix CERT record attribute name.

This change fixes retrieval of CERT values from server data, that
was failing due to wrong attribute name.
This commit is contained in:
Rafael Guterres Jeffman
2020-11-18 12:32:50 -03:00
parent fd84728820
commit ce6d90bf4a

View File

@@ -968,7 +968,7 @@ _RECORD_PARTS = {
], ],
"a6record": ["a6_part_data"], "a6record": ["a6_part_data"],
"afsdbrecord": ['afsdb_part_subtype', 'afsdb_part_hostname'], "afsdbrecord": ['afsdb_part_subtype', 'afsdb_part_hostname'],
"cert_rec": [ "certrecord": [
'cert_part_type', 'cert_part_key_tag', 'cert_part_algorithm', 'cert_part_type', 'cert_part_key_tag', 'cert_part_algorithm',
'cert_part_certificate_or_crl' 'cert_part_certificate_or_crl'
], ],