]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorSource Maintenance <squidadm@squid-cache.org>
Sun, 31 Jan 2016 06:14:05 +0000 (06:14 +0000)
committerSource Maintenance <squidadm@squid-cache.org>
Sun, 31 Jan 2016 06:14:05 +0000 (06:14 +0000)
src/acl/DestinationIp.cc
src/clients/FtpRelay.cc
src/servers/FtpServer.cc

index aa316f8913f47727aaecab48feef7e49efc91863..48f5a61384bdcb3e19014990b05d9257bae602ed 100644 (file)
@@ -40,7 +40,7 @@ ACLDestinationIP::match(ACLChecklist *cl)
     if (Config.onoff.client_dst_passthru && (checklist->request->flags.intercepted || checklist->request->flags.interceptTproxy)) {
         const ConnStateData *conn = checklist->conn();
         return (conn != NULL && conn->clientConnection != NULL) ?
-            ACLIP::match(conn->clientConnection->local) : -1;
+               ACLIP::match(conn->clientConnection->local) : -1;
     }
 
     if (flags.isSet(ACL_F_NO_LOOKUP)) {
index d277a1963ea5f8834e1a0aa615ecfe95a025c8f9..599e3161e2d9262402de323328f86f1a3473aecb 100644 (file)
@@ -723,7 +723,7 @@ Ftp::Relay::finalizeDataDownload()
         if (Ftp::Server *srv = dynamic_cast<Ftp::Server*>(mgr.get())) {
             typedef NullaryMemFunT<Ftp::Server> CbDialer;
             AsyncCall::Pointer call = JobCallback(11, 3, CbDialer, srv,
-                                                        Ftp::Server::originDataCompletionCheckpoint);
+                                                  Ftp::Server::originDataCompletionCheckpoint);
             ScheduleCallHere(call);
         }
     }
index 87f01314de04fbc20c2c7b046b1d7331e7357ebc..e43f76a72d258d216ad92c0b696b373f07d5f9f7 100644 (file)
@@ -313,7 +313,7 @@ Ftp::Server::clientPinnedConnectionClosed(const CommCloseCbParams &io)
 
     // TODO: If the server control connection is gone, reset state to login
     // again. Reseting login alone is not enough: FtpRelay::sendCommand() will
-    // not re-login because FtpRelay::serverState() is not going to be 
+    // not re-login because FtpRelay::serverState() is not going to be
     // fssConnected. Calling resetLogin() alone is also harmful because
     // it does not reset correctly the client-to-squid control connection (eg
     // respond if required with an error code, in all cases)