From: Aki Tuomi Date: Mon, 13 May 2013 07:01:29 +0000 (+0300) Subject: Enabled compression for MR as per RFC X-Git-Tag: auth-3.3-rc1~58^2~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2dd20a071049cb35a03bccc08eaa3e7cc48a4d86;p=thirdparty%2Fpdns.git Enabled compression for MR as per RFC --- diff --git a/pdns/dnsrecords.cc b/pdns/dnsrecords.cc index 9e444f9d84..8aef60ebab 100644 --- a/pdns/dnsrecords.cc +++ b/pdns/dnsrecords.cc @@ -95,7 +95,7 @@ private: boilerplate_conv(NS, ns_t_ns, conv.xfrLabel(d_content, true)); boilerplate_conv(PTR, ns_t_ptr, conv.xfrLabel(d_content, true)); boilerplate_conv(CNAME, ns_t_cname, conv.xfrLabel(d_content, true)); -boilerplate_conv(MR, ns_t_mr, conv.xfrLabel(d_alias, false)); +boilerplate_conv(MR, ns_t_mr, conv.xfrLabel(d_alias, true)); boilerplate_conv(TXT, ns_t_txt, conv.xfrText(d_text, true)); boilerplate_conv(SPF, 99, conv.xfrText(d_text, true)); boilerplate_conv(HINFO, ns_t_hinfo, conv.xfrText(d_cpu); conv.xfrText(d_host));