]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Fix typo in DNSCryptoKeyEngine::makeFromISCString 10364/head
authorRemi Gacogne <rgacogne+github@valombre.net>
Thu, 6 May 2021 13:00:18 +0000 (15:00 +0200)
committerGitHub <noreply@github.com>
Thu, 6 May 2021 13:00:18 +0000 (15:00 +0200)
Co-authored-by: Peter van Dijk <peter.van.dijk@powerdns.com>
pdns/dnssecinfra.cc

index 6cbe1288b871f5ed3e2ac6191705848102209354..e2db27f07ca6bc26be71b4d93bd683a020804c20 100644 (file)
@@ -130,7 +130,7 @@ std::unique_ptr<DNSCryptoKeyEngine> 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());
         }
       }
     }