]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
spelling: could
authorJosh Soref <2119212+jsoref@users.noreply.github.com>
Wed, 19 Nov 2025 16:37:51 +0000 (11:37 -0500)
committerJosh Soref <2119212+jsoref@users.noreply.github.com>
Thu, 20 Nov 2025 12:31:10 +0000 (07:31 -0500)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
pdns/dnsdistdist/dnsdist-nghttp2-in.cc
pdns/dnsdistdist/dnsdist-nghttp2.cc

index 87f164a2bda6c10c21559e29d4b0caa8ef479c09..6161bbfa82ebc7f189746e42955a2d1522f59ebd 100644 (file)
@@ -262,7 +262,7 @@ IncomingHTTP2Connection::IncomingHTTP2Connection(ConnectionInfo&& connectionInfo
 
   nghttp2_session* sess = nullptr;
   if (nghttp2_session_server_new(&sess, callbacks.get(), this) != 0) {
-    throw std::runtime_error("Coult not allocate a new incoming HTTP/2 session");
+    throw std::runtime_error("Could not allocate a new incoming HTTP/2 session");
   }
 
   d_session = std::unique_ptr<nghttp2_session, decltype(&nghttp2_session_del)>(sess, nghttp2_session_del);
index c5be3a1c883a92b9d329d5636256856509b3dee5..071ae74a30bd0fc4eb39ba0a90faf40886456f19 100644 (file)
@@ -813,7 +813,7 @@ DoHConnectionToBackend::DoHConnectionToBackend(const std::shared_ptr<DownstreamS
   if (nghttp2_session_client_new(&sess, callbacks.get(), this) != 0) {
     d_connectionDied = true;
     ++d_ds->tcpDiedSendingQuery;
-    vinfolog("Coult not allocate a new HTTP/2 session");
+    vinfolog("Could not allocate a new HTTP/2 session");
     return;
   }