Commit 5ea41cc5 authored by Phil Lodwick's avatar Phil Lodwick Committed by Alexandre Julliard

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

parent 0d01da1f
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment