wininet: ftp: 125 is an acceptable response code for the STORE command.

This commit is contained in:
Phil Lodwick 2006-06-07 14:43:50 -05:00 committed by Alexandre Julliard
parent 0d01da1fbf
commit 5ea41cc5fb
1 changed files with 1 additions and 1 deletions

View File

@ -2098,7 +2098,7 @@ static BOOL FTP_SendStore(LPWININETFTPSESSIONW lpwfs, LPCWSTR lpszRemoteFile, DW
nResCode = FTP_ReceiveResponse(lpwfs, lpwfs->hdr.dwContext);
if (nResCode)
{
if (nResCode == 150)
if (nResCode == 150 || nResCode == 125)
bSuccess = TRUE;
else
FTP_SetResponseError(nResCode);