From: Remi Gacogne Date: Fri, 22 Aug 2025 12:38:35 +0000 (+0200) Subject: dnsdist: Fix a typo is an exception message spotted by Miod X-Git-Tag: dnsdist-2.0.1~4^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F16080%2Fhead;p=thirdparty%2Fpdns.git dnsdist: Fix a typo is an exception message spotted by Miod Co-authored-by: Miod Vallat Signed-off-by: Remi Gacogne (cherry picked from commit 28238ca3fb9fab245b90d912a30355567aa7266d) --- diff --git a/pdns/dnsdistdist/dnsdist-nghttp2.cc b/pdns/dnsdistdist/dnsdist-nghttp2.cc index f2cf88fab..624d0f121 100644 --- a/pdns/dnsdistdist/dnsdist-nghttp2.cc +++ b/pdns/dnsdistdist/dnsdist-nghttp2.cc @@ -349,7 +349,7 @@ void DoHConnectionToBackend::queueQuery(std::shared_ptr& sender, d_connectionDied = true; ++d_ds->tcpDiedSendingQuery; d_currentStreams.erase(streamId); - throw std::runtime_error("Error in nghttp2_session_send:" + std::to_string(rtv)); + throw std::runtime_error("Error in nghttp2_session_send: " + std::to_string(rtv)); } }