wininet: ftp: 125 is an acceptable response code for the STORE command.
This commit is contained in:
parent
0d01da1fbf
commit
5ea41cc5fb
|
@ -2098,7 +2098,7 @@ static BOOL FTP_SendStore(LPWININETFTPSESSIONW lpwfs, LPCWSTR lpszRemoteFile, DW
|
||||||
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
|
||||||
if (nResCode)
|
if (nResCode)
|
||||||
{
|
{
|
||||||
if (nResCode == 150)
|
if (nResCode == 150 || nResCode == 125)
|
||||||
bSuccess = TRUE;
|
bSuccess = TRUE;
|
||||||
else
|
else
|
||||||
FTP_SetResponseError(nResCode);
|
FTP_SetResponseError(nResCode);
|
||||||
|
|
Loading…
Reference in New Issue