From 02ca1c5b9df957461ae0920a1a3ed7a730b149a0 Mon Sep 17 00:00:00 2001 From: Aki Tuomi Date: Wed, 23 Apr 2014 16:31:36 +0300 Subject: [PATCH] Make SSHFP read space separated fingerprints --- pdns/dnsrecords.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/dnsrecords.cc b/pdns/dnsrecords.cc index 85ce9c4016..f6df0fad96 100644 --- a/pdns/dnsrecords.cc +++ b/pdns/dnsrecords.cc @@ -303,7 +303,7 @@ boilerplate_conv(DLV,32769 , boilerplate_conv(SSHFP, 44, conv.xfr8BitInt(d_algorithm); conv.xfr8BitInt(d_fptype); - conv.xfrHexBlob(d_fingerprint); + conv.xfrHexBlob(d_fingerprint, true); ) boilerplate_conv(RRSIG, 46, -- 2.47.2