From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 19 Nov 2025 16:23:28 +0000 (-0500) Subject: spelling: arecvtcp X-Git-Tag: rec-5.4.0-alpha1~61^2~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b90c0276734e985bffee39b6adb132f69d900a4b;p=thirdparty%2Fpdns.git spelling: arecvtcp Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- diff --git a/pdns/recursordist/rec-tcp.cc b/pdns/recursordist/rec-tcp.cc index fdaf648490..91cca76939 100644 --- a/pdns/recursordist/rec-tcp.cc +++ b/pdns/recursordist/rec-tcp.cc @@ -1024,13 +1024,13 @@ LWResult::Result arecvtcp(PacketBuffer& data, const size_t len, shared_ptrgetDescriptor(), "calling tryRead() " << len << endl); state = handler->tryRead(data, pos, len); - TCPLOG(handler->getDescriptor(), "arcvtcp tryRead() returned " << int(state) << ' ' << pos << '/' << len << endl); + TCPLOG(handler->getDescriptor(), "arecvtcp tryRead() returned " << int(state) << ' ' << pos << '/' << len << endl); switch (state) { case IOState::Done: case IOState::NeedRead: if (pos == len || (incompleteOkay && pos > 0)) { data.resize(pos); - TCPLOG(handler->getDescriptor(), "acecvtcp success A" << endl); + TCPLOG(handler->getDescriptor(), "arecvtcp success A" << endl); return LWResult::Result::Success; } break;