]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
spelling: arecvtcp
authorJosh Soref <2119212+jsoref@users.noreply.github.com>
Wed, 19 Nov 2025 16:23:28 +0000 (11:23 -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/recursordist/rec-tcp.cc

index fdaf64849085b7149a9227734d4d796523d2cda3..91cca76939574f74e4858b3c1eccf725b89caa5b 100644 (file)
@@ -1024,13 +1024,13 @@ LWResult::Result arecvtcp(PacketBuffer& data, const size_t len, shared_ptr<TCPIO
   try {
     TCPLOG(handler->getDescriptor(), "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;