From: Peter van Dijk Date: Mon, 15 Oct 2012 05:28:52 +0000 (+0000) Subject: fix qtype rfc3597 generation X-Git-Tag: auth-3.2-rc1~71 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=815caf66c9907703f4c7424ab16eb332a728b25d;p=thirdparty%2Fpdns.git fix qtype rfc3597 generation git-svn-id: svn://svn.powerdns.com/pdns/trunk/pdns@2811 d19b8d6e-7fed-0310-83ef-9ca221ded41b --- diff --git a/pdns/qtype.cc b/pdns/qtype.cc index 89b3c67fe1..e8e2519d82 100644 --- a/pdns/qtype.cc +++ b/pdns/qtype.cc @@ -47,7 +47,7 @@ const string QType::getName() const if(pos->second==code) return pos->first; - return "#"+itoa(code); + return "TYPE"+itoa(code); } QType &QType::operator=(uint16_t n)