From: W.C.A. Wijngaards Date: Tue, 23 Jul 2013 08:00:55 +0000 (+0200) Subject: * bugfix #508: ldnsx Adding NSEC3PARAM to known/allowable RR type X-Git-Tag: release-1.6.17rc1~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dbc440bab2bc2127e826fde39be949181d2a1f1e;p=thirdparty%2Fldns.git * bugfix #508: ldnsx Adding NSEC3PARAM to known/allowable RR type dictionary. Patch from shussain. --- diff --git a/Changelog b/Changelog index 15cdbed1..f3d4b38e 100644 --- a/Changelog +++ b/Changelog @@ -26,6 +26,8 @@ ldns_pkt_ixfr_request_new_frm_str. * bugfix #507: ldnsx Fix use of non-existent variables and not properly referring to instance variable. Patch from shussain. + * bugfix #508: ldnsx Adding NSEC3PARAM to known/allowable RR type + dictionary. Patch from shussain. 1.6.16 2012-11-13 * Fix Makefile to build pyldns with BSD make diff --git a/contrib/ldnsx/ldnsx.py b/contrib/ldnsx/ldnsx.py index b61a9e72..3ae9424f 100644 --- a/contrib/ldnsx/ldnsx.py +++ b/contrib/ldnsx/ldnsx.py @@ -891,6 +891,7 @@ _rr_types={ "NSAP_PTR" : ldns.LDNS_RR_TYPE_NSAP_PTR, "NSEC" : ldns.LDNS_RR_TYPE_NSEC, "NSEC3": ldns.LDNS_RR_TYPE_NSEC3, + "NSEC3PARAM" : ldns.LDNS_RR_TYPE_NSEC3PARAM, "NSEC3PARAMS" : ldns.LDNS_RR_TYPE_NSEC3PARAMS, "NULL" : ldns.LDNS_RR_TYPE_NULL, "NXT" : ldns.LDNS_RR_TYPE_NXT,