From: Remi Gacogne Date: Thu, 6 May 2021 13:00:18 +0000 (+0200) Subject: Fix typo in DNSCryptoKeyEngine::makeFromISCString X-Git-Tag: dnsdist-1.7.0-alpha0~15^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F10364%2Fhead;p=thirdparty%2Fpdns.git Fix typo in DNSCryptoKeyEngine::makeFromISCString Co-authored-by: Peter van Dijk --- diff --git a/pdns/dnssecinfra.cc b/pdns/dnssecinfra.cc index 6cbe1288b8..e2db27f07c 100644 --- a/pdns/dnssecinfra.cc +++ b/pdns/dnssecinfra.cc @@ -130,7 +130,7 @@ std::unique_ptr DNSCryptoKeyEngine::makeFromISCString(DNSKEY } } catch (const std::exception& e) { - throw std::runtime_error("Error while trying to pase the value of the '" + key + "' key from the ISC map: " + e.what()); + throw std::runtime_error("Error while trying to parse the numeric value of the '" + key + "' key from the ISC map: " + e.what()); } } }