From: James Cloos Date: Mon, 16 Mar 2015 17:53:44 +0000 (-0400) Subject: Use the variable name d_keyring for the OPENPGPKEY RDATA. X-Git-Tag: dnsdist-1.0.0-alpha1~248^2~6^2~1^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3fd06ce5b9f6aa684788584d1d8cdd36eb24d7df;p=thirdparty%2Fpdns.git Use the variable name d_keyring for the OPENPGPKEY RDATA. Signed-off-by: James Cloos --- diff --git a/pdns/dnsrecords.cc b/pdns/dnsrecords.cc index d6ce9e184c..69822484d4 100644 --- a/pdns/dnsrecords.cc +++ b/pdns/dnsrecords.cc @@ -274,7 +274,7 @@ boilerplate_conv(TLSA, 52, ) boilerplate_conv(OPENPGPKEY, 61, - conv.xfrHexBlob(d_cert, true); + conv.xfrHexBlob(d_keyring, true); ) #undef DS diff --git a/pdns/dnsrecords.hh b/pdns/dnsrecords.hh index b11ecca2de..994ce6c431 100644 --- a/pdns/dnsrecords.hh +++ b/pdns/dnsrecords.hh @@ -362,7 +362,7 @@ public: includeboilerplate(OPENPGPKEY) private: - string d_cert; + string d_keyring; };