]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorSource Maintenance <squidadm@squid-cache.org>
Tue, 15 Mar 2016 18:12:09 +0000 (18:12 +0000)
committerSource Maintenance <squidadm@squid-cache.org>
Tue, 15 Mar 2016 18:12:09 +0000 (18:12 +0000)
src/servers/FtpServer.cc
src/servers/FtpServer.h

index 7409fd8a9a6e2850a890509694d4efe3e3063182..7fd3cd0501f02f93c662b626af4310c8427f85f7 100644 (file)
@@ -1753,7 +1753,7 @@ Ftp::Server::stopWaitingForOrigin(int originStatus)
         return;
 
     // completeDataDownload() could be waitingForOrigin in fssHandleDataRequest
-    // Depending on which side has finished downloading first, either trust 
+    // Depending on which side has finished downloading first, either trust
     // master->userDataDone status or set originDataDownloadAbortedOnError:
     if (master->userDataDone) {
         // We finished downloading before Ftp::Client. Most likely, the
index aaf8d6e687bd2fadce324cea7f33c458c6f7122f..19f78eb7f5726d72c48e40fbaec89735f03323c4 100644 (file)
@@ -41,7 +41,7 @@ class MasterState: public RefCountable
 public:
     typedef RefCount<MasterState> Pointer;
 
-MasterState(): serverState(fssBegin), clientReadGreeting(false), userDataDone(0) {}
+    MasterState(): serverState(fssBegin), clientReadGreeting(false), userDataDone(0) {}
 
     Ip::Address clientDataAddr; ///< address of our FTP client data connection
     SBuf workingDir; ///< estimated current working directory for URI formation
@@ -195,7 +195,7 @@ private:
     bool waitingForOrigin;
     /// whether the origin data transfer aborted
     bool originDataDownloadAbortedOnError;
-    
+
     /// a response which writing was postponed until stopWaitingForOrigin()
     HttpReply::Pointer delayedReply;
 };