From 1c83d0da28bd23952b24c0ccc2205457009bea5f Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Thu, 6 May 2021 15:00:18 +0200 Subject: [PATCH] Fix typo in DNSCryptoKeyEngine::makeFromISCString Co-authored-by: Peter van Dijk --- pdns/dnssecinfra.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } } } -- 2.47.2