• 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

Revisión132c39f5500bf34b4f6edad301ceb134c4a7d282 (tree)
Tiempo2011-10-29 23:41:13
Autors_kawamoto <s_kawamoto@user...>
Commiters_kawamoto

Log Message

Fix bugs of initialization of FTPIS.

Cambiar Resumen

Diferencia incremental

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/connect.c
+++ b/connect.c
@@ -1299,18 +1299,6 @@ static SOCKET DoConnectCrypt(int CryptMode, HOSTDATA* HostData, char *Host, char
12991299 {
13001300 while((Sts = ReadReplyMessage(ContSock, Buf, 1024, &CancelFlg, TmpBuf) / 100) == FTP_PRELIM)
13011301 ;
1302- if((Sts = command(ContSock, Reply, &CancelFlg, "PBSZ 0")) == 200)
1303- {
1304- if((Sts = command(ContSock, Reply, &CancelFlg, "PROT P")) == 200)
1305- {
1306- while((Sts = ReadReplyMessage(ContSock, Buf, 1024, &CancelFlg, TmpBuf) / 100) == FTP_PRELIM)
1307- ;
1308- }
1309- else
1310- Sts = FTP_ERROR;
1311- }
1312- else
1313- Sts = FTP_ERROR;
13141302 }
13151303 else
13161304 Sts = FTP_ERROR;