• 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

Revision2c07fce2c369fa3199b3e7a3c95e6ff439f66fab (tree)
Time2011-12-07 21:50:26
Authors_kawamoto <s_kawamoto@user...>
Commiters_kawamoto

Log Message

Fix bugs of parsing LIST response from linux-ftpd.

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/filelist.c
+++ b/filelist.c
@@ -4826,8 +4826,8 @@ static int ResolvFileInfo(char *Str, int ListType, char *Fname, LONGLONG *Size,
48264826 sTime.wMonth = atoi(Buf+5);
48274827 sTime.wDay = atoi(Buf+8);
48284828 FindField(Str, Buf, 7+offs+offs2, NO);
4829- sTime.wHour = atoi_n(Buf, 2);
4830- sTime.wMinute = atoi(Buf+2);
4829+ if(GetHourAndMinute(Buf, &sTime.wHour, &sTime.wMinute) == FFFTP_SUCCESS)
4830+ *InfoExist |= FINFO_TIME;
48314831 }
48324832 else
48334833 {