From: Alex Rousskov Date: Sun, 1 Aug 2021 22:04:26 +0000 (-0400) Subject: fixup: auto-formatted modified source files X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3a3c0f5552fc421152e5ffecc0d2772f58c23ea;p=thirdparty%2Fsquid.git fixup: auto-formatted modified source files --- diff --git a/src/HappyConnOpener.cc b/src/HappyConnOpener.cc index 2e3db9c76c..2ddf3f0786 100644 --- a/src/HappyConnOpener.cc +++ b/src/HappyConnOpener.cc @@ -574,7 +574,7 @@ HappyConnOpener::openFreshConnection(Attempt &attempt, PeerConnectionPointer &de typedef CommCbMemFunT Dialer; AsyncCall::Pointer callConnect = asyncCall(48, 5, attempt.callbackMethodName, - Dialer(this, attempt.callbackMethod)); + Dialer(this, attempt.callbackMethod)); const time_t connTimeout = dest->connectTimeout(fwdStart); Comm::ConnOpener *cs = new Comm::ConnOpener(dest, callConnect, connTimeout); if (!dest->getPeer()) diff --git a/src/adaptation/icap/Xaction.h b/src/adaptation/icap/Xaction.h index ad78e4e754..88181c2855 100644 --- a/src/adaptation/icap/Xaction.h +++ b/src/adaptation/icap/Xaction.h @@ -21,7 +21,7 @@ class MemBuf; namespace Ssl { - class IcapPeerConnector; +class IcapPeerConnector; } namespace Adaptation @@ -39,7 +39,6 @@ namespace Icap // Note: Xaction must be the first parent for object-unaware cbdata to work - class Xaction: public Adaptation::Initiate { diff --git a/src/log/TcpLogger.cc b/src/log/TcpLogger.cc index 6ce081eca5..ee6fa31715 100644 --- a/src/log/TcpLogger.cc +++ b/src/log/TcpLogger.cc @@ -265,7 +265,7 @@ Log::TcpLogger::doConnect() void Log::TcpLogger::connectDone(const CommConnectCbParams ¶ms) { - connWait.finish(); + connWait.finish(); if (params.flag != Comm::OK) { const double delay = 0.5; // seconds diff --git a/src/servers/FtpServer.cc b/src/servers/FtpServer.cc index db40788006..1ed6f9623b 100644 --- a/src/servers/FtpServer.cc +++ b/src/servers/FtpServer.cc @@ -1680,7 +1680,7 @@ Ftp::Server::checkDataConnPre() typedef CommCbMemFunT Dialer; AsyncCall::Pointer callback = JobCallback(17, 3, Dialer, this, Ftp::Server::connectedForData); const auto cs = new Comm::ConnOpener(dataConn, callback, - Config.Timeout.connect); + Config.Timeout.connect); dataConnWait.start(cs, callback); AsyncJob::Start(cs); return false; // ConnStateData::processFtpRequest waits handleConnectDone diff --git a/src/tunnel.cc b/src/tunnel.cc index d1e3e402fb..aa8daea08c 100644 --- a/src/tunnel.cc +++ b/src/tunnel.cc @@ -1230,7 +1230,7 @@ TunnelStateData::establishTunnelThruProxy(const Comm::ConnectionPointer &conn) { AsyncCall::Pointer callback = asyncCall(5,4, "TunnelStateData::tunnelEstablishmentDone", - Http::Tunneler::CbDialer(&TunnelStateData::tunnelEstablishmentDone, this)); + Http::Tunneler::CbDialer(&TunnelStateData::tunnelEstablishmentDone, this)); const auto tunneler = new Http::Tunneler(conn, request, callback, Config.Timeout.lifetime, al); #if USE_DELAY_POOLS tunneler->setDelayId(server.delayId);