]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
spelling: everything
authorJosh Soref <jsoref@users.noreply.github.com>
Thu, 11 Mar 2021 03:35:36 +0000 (22:35 -0500)
committerJosh Soref <jsoref@users.noreply.github.com>
Fri, 12 Mar 2021 14:22:44 +0000 (09:22 -0500)
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
pdns/opensslsigners.cc

index e47e2705f1c381de4409d3212719b15c4d9fc1f0..cee5e6069ada7800e1257109a7725b0129e19f7e 100644 (file)
@@ -464,7 +464,7 @@ void OpenSSLRSADNSCryptoKeyEngine::fromISCMap(DNSKEYRecordContent& drc, std::map
   if (drc.d_algorithm != d_algorithm) {
     throw runtime_error(getName() + " tried to feed an algorithm " + std::to_string(drc.d_algorithm) + " to a " + std::to_string(d_algorithm) + " key");
   }
-  // Eveything OK, we're releasing ownership since the RSA_* functions want it
+  // Everything OK, we're releasing ownership since the RSA_* functions want it
   RSA_set0_key(key.get(), n.release(), e.release(), d.release());
   RSA_set0_factors(key.get(), p.release(), q.release());
   RSA_set0_crt_params(key.get(), dmp1.release(), dmq1.release(), iqmp.release());