• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

FFFTPのソースコードです。


Commit MetaInfo

Revision1684ef33239596c06a94ec0ac52addfa93f8ae2c (tree)
Time2012-02-17 02:12:44
Authors_kawamoto <s_kawamoto@user...>
Commiters_kawamoto

Log Message

Fix displaying the number of files to transfer.

Change Summary

Incremental Difference

Binary files a/FFFTP_Eng_Release/FFFTP.exe and b/FFFTP_Eng_Release/FFFTP.exe differ
Binary files a/Release/FFFTP.exe and b/Release/FFFTP.exe differ
--- a/getput.c
+++ b/getput.c
@@ -1141,7 +1141,8 @@ static ULONG WINAPI TransferThread(void *Dummy)
11411141 // if((strncmp(TransPacketBase->Cmd, "RETR", 4) == 0) ||
11421142 // (strncmp(TransPacketBase->Cmd, "STOR", 4) == 0))
11431143 if((strncmp(Pos->Cmd, "RETR", 4) == 0) ||
1144- (strncmp(Pos->Cmd, "STOR", 4) == 0))
1144+ (strncmp(Pos->Cmd, "STOR", 4) == 0) ||
1145+ (strncmp(Pos->Cmd, "STOU", 4) == 0))
11451146 {
11461147 // TransFiles--;
11471148 if(TransFiles > 0)