]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Enabled compression for MR as per RFC
authorAki Tuomi <cmouse@desteem.org>
Mon, 13 May 2013 07:01:29 +0000 (10:01 +0300)
committerAki Tuomi <cmouse@desteem.org>
Mon, 13 May 2013 19:05:05 +0000 (22:05 +0300)
pdns/dnsrecords.cc

index 9e444f9d846bef25b470de575a22842be0395a9c..8aef60ebabdce7a6cf15364c059f6c7a65434421 100644 (file)
@@ -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));