From: Bert Hubert Date: Tue, 4 Apr 2006 12:12:19 +0000 (+0000) Subject: oops, DS uses hex (just like SSHFP). Thanks to Jakob Schlyter for pointing this out. X-Git-Tag: rec-3-0~102 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b7317c56dc1bfaa64e62b7ff5fbe4674a5e9aea0;p=pdns oops, DS uses hex (just like SSHFP). Thanks to Jakob Schlyter for pointing this out. git-svn-id: svn://svn.powerdns.com/pdns/trunk/pdns@651 d19b8d6e-7fed-0310-83ef-9ca221ded41b --- diff --git a/pdns/dnsrecords.cc b/pdns/dnsrecords.cc index f5724c69a..7363a40ec 100644 --- a/pdns/dnsrecords.cc +++ b/pdns/dnsrecords.cc @@ -245,7 +245,7 @@ boilerplate_conv(DS, 43, conv.xfr16BitInt(d_tag); conv.xfr8BitInt(d_algorithm); conv.xfr8BitInt(d_digesttype); - conv.xfrBlob(d_digest); + conv.xfrHexBlob(d_digest); )