mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:35:47 +00:00
[WININET] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70948
This commit is contained in:
parent
44db21603f
commit
0dbcea8773
4 changed files with 5 additions and 7 deletions
|
@ -703,7 +703,7 @@ DWORD get_cookie_header(const WCHAR *host, const WCHAR *path, WCHAR **ret)
|
|||
}
|
||||
|
||||
LeaveCriticalSection(&cookie_cs);
|
||||
return ERROR_SUCCESS;
|
||||
return res;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
|
|
|
@ -397,8 +397,6 @@ static INT_PTR WINAPI WININET_InvalidCertificateDialog(
|
|||
case WM_COMMAND:
|
||||
if( wParam == IDOK )
|
||||
{
|
||||
BOOL res = TRUE;
|
||||
|
||||
if( params->dwFlags & FLAGS_ERROR_UI_FLAGS_CHANGE_OPTIONS )
|
||||
{
|
||||
http_request_t *req = params->req;
|
||||
|
@ -437,7 +435,7 @@ static INT_PTR WINAPI WININET_InvalidCertificateDialog(
|
|||
req->netconn->security_flags |= flags;
|
||||
}
|
||||
|
||||
EndDialog( hdlg, res ? ERROR_SUCCESS : ERROR_NOT_SUPPORTED );
|
||||
EndDialog( hdlg, ERROR_SUCCESS );
|
||||
return TRUE;
|
||||
}
|
||||
if( wParam == IDCANCEL )
|
||||
|
|
|
@ -2286,7 +2286,7 @@ BOOL WINAPI FtpCommandW( HINTERNET hConnect, BOOL fExpectResponse, DWORD dwFlags
|
|||
strcat(cmd, szCRLF);
|
||||
len--;
|
||||
|
||||
TRACE("Sending (%s) len(%d)\n", cmd, len);
|
||||
TRACE("Sending (%s) len(%d)\n", debugstr_a(cmd), len);
|
||||
while ((nBytesSent < len) && (nRC != -1))
|
||||
{
|
||||
nRC = sock_send(lpwfs->sndSocket, cmd + nBytesSent, len - nBytesSent, 0);
|
||||
|
@ -2705,7 +2705,7 @@ static BOOL FTP_SendCommandA(INT nSocket, FTP_COMMAND ftpCmd, LPCSTR lpszParam,
|
|||
sprintf(buf, "%s%s%s%s", szFtpCommands[ftpCmd], dwParamLen ? " " : "",
|
||||
dwParamLen ? lpszParam : "", szCRLF);
|
||||
|
||||
TRACE("Sending (%s) len(%d)\n", buf, len);
|
||||
TRACE("Sending (%s) len(%d)\n", debugstr_a(buf), len);
|
||||
while((nBytesSent < len) && (nRC != -1))
|
||||
{
|
||||
nRC = sock_send(nSocket, buf+nBytesSent, len - nBytesSent, 0);
|
||||
|
|
|
@ -205,7 +205,7 @@ reactos/dll/win32/windowscodecsext # Synced to WineStaging-1.7.55
|
|||
reactos/dll/win32/winemp3.acm # Synced to WineStaging-1.7.55
|
||||
reactos/dll/win32/wing32 # Synced to WineStaging-1.7.55
|
||||
reactos/dll/win32/winhttp # Synced to WineStaging-1.9.4
|
||||
reactos/dll/win32/wininet # Synced to WineStaging-1.7.55
|
||||
reactos/dll/win32/wininet # Synced to WineStaging-1.9.4
|
||||
reactos/dll/win32/winmm # Forked at Wine-20050628
|
||||
reactos/dll/win32/winmm/midimap # Forked at Wine-20050628
|
||||
reactos/dll/win32/winmm/wavemap # Forked at Wine-20050628
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue