From 2dd20a071049cb35a03bccc08eaa3e7cc48a4d86 Mon Sep 17 00:00:00 2001 From: Aki Tuomi Date: Mon, 13 May 2013 10:01:29 +0300 Subject: [PATCH] Enabled compression for MR as per RFC --- pdns/dnsrecords.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- 2.47.3