Browse Source

Send buffer configuration was not logged for S3 protocol

Source commit: 9995873b58963230f9d0af708cb4982523cfc826
Martin Prikryl 2 years ago
parent
commit
bd4211066d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      source/core/SessionInfo.cpp

+ 1 - 1
source/core/SessionInfo.cpp

@@ -1304,7 +1304,7 @@ void __fastcall TSessionLog::DoAddStartupInfo(TSessionData * Data)
         ADF(L"Local command: %s", (Data->ProxyLocalCommand));
         ADF(L"Local command: %s", (Data->ProxyLocalCommand));
       }
       }
     }
     }
-    if (Data->UsesSsh || (Data->FSProtocol == fsFTP))
+    if (Data->UsesSsh || (Data->FSProtocol == fsFTP) || (Data->FSProtocol == fsS3))
     {
     {
       ADF(L"Send buffer: %d", (Data->SendBuf));
       ADF(L"Send buffer: %d", (Data->SendBuf));
     }
     }