From 5ea41cc5fbd3f182a6b1903a24ccc6ecb6ecfc52 Mon Sep 17 00:00:00 2001 From: Phil Lodwick Date: Wed, 7 Jun 2006 14:43:50 -0500 Subject: [PATCH] wininet: ftp: 125 is an acceptable response code for the STORE command. --- dlls/wininet/ftp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wininet/ftp.c b/dlls/wininet/ftp.c index 3875898ae34..828f1e596fd 100644 --- a/dlls/wininet/ftp.c +++ b/dlls/wininet/ftp.c @@ -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); -- 2.11.4.GIT