From: Kees Monshouwer Date: Thu, 7 Feb 2019 13:52:59 +0000 (+0100) Subject: auth: register a few known types and remove an unknown one X-Git-Tag: dnsdist-1.4.0-rc3~58^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fa23972a8cadfd648ae75c0a47f7a514b30293c8;p=pdns auth: register a few known types and remove an unknown one --- diff --git a/pdns/dnsrecords.cc b/pdns/dnsrecords.cc index d1d491d0b..aa5ae30ce 100644 --- a/pdns/dnsrecords.cc +++ b/pdns/dnsrecords.cc @@ -619,6 +619,7 @@ void reportOtherTypes() ALIASRecordContent::report(); SPFRecordContent::report(); NAPTRRecordContent::report(); + KXRecordContent::report(); LOCRecordContent::report(); ENTRecordContent::report(); HINFORecordContent::report(); diff --git a/pdns/qtype.hh b/pdns/qtype.hh index 8d7eab185..d94238f13 100644 --- a/pdns/qtype.hh +++ b/pdns/qtype.hh @@ -79,7 +79,6 @@ public: MB=7, MG=8, MR=9, - WKS=11, PTR=12, HINFO=13, MINFO=14, @@ -179,7 +178,6 @@ private: qtype_insert("MB", 7); qtype_insert("MG", 8); qtype_insert("MR", 9); - qtype_insert("WKS", 11); qtype_insert("PTR", 12); qtype_insert("HINFO", 13); qtype_insert("MINFO", 14);