Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
448f2452
Commit
448f2452
authored
Jun 07, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 07, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Added support for ERROR_INTERNET_SEC_CERT_REV_FAILED in InternetErrorDlg.
parent
964e538b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
dialogs.c
dlls/wininet/dialogs.c
+4
-0
internet.c
dlls/wininet/tests/internet.c
+1
-1
No files found.
dlls/wininet/dialogs.c
View file @
448f2452
...
...
@@ -539,6 +539,9 @@ static INT_PTR WINAPI WININET_InvalidCertificateDialog(
case
ERROR_INTERNET_SEC_CERT_CN_INVALID
:
flags
|=
SECURITY_FLAG_IGNORE_CERT_CN_INVALID
;
break
;
case
ERROR_INTERNET_SEC_CERT_REV_FAILED
:
flags
|=
SECURITY_FLAG_IGNORE_REVOCATION
;
break
;
case
ERROR_INTERNET_SEC_CERT_ERRORS
:
if
(
flags
&
_SECURITY_FLAG_CERT_REV_FAILED
)
flags
|=
SECURITY_FLAG_IGNORE_REVOCATION
;
...
...
@@ -655,6 +658,7 @@ DWORD WINAPI InternetErrorDlg(HWND hWnd, HINTERNET hRequest,
case
ERROR_INTERNET_SEC_CERT_CN_INVALID
:
case
ERROR_INTERNET_SEC_CERT_DATE_INVALID
:
case
ERROR_INTERNET_INVALID_CA
:
case
ERROR_INTERNET_SEC_CERT_REV_FAILED
:
if
(
dwFlags
&
FLAGS_ERROR_UI_FLAGS_NO_UI
)
{
res
=
ERROR_CANCELLED
;
break
;
...
...
dlls/wininet/tests/internet.c
View file @
448f2452
...
...
@@ -1256,7 +1256,7 @@ static void test_InternetErrorDlg(void)
{
ERROR_INTERNET_HTTPS_HTTP_SUBMIT_REDIR
,
ERROR_CANCELLED
,
FLAG_TODO
},
{
ERROR_INTERNET_INSERT_CDROM
,
ERROR_CANCELLED
,
FLAG_TODO
|
FLAG_NEEDREQ
|
FLAG_UNIMPL
},
{
ERROR_INTERNET_SEC_CERT_ERRORS
,
ERROR_CANCELLED
,
0
},
{
ERROR_INTERNET_SEC_CERT_REV_FAILED
,
ERROR_CANCELLED
,
FLAG_TODO
},
{
ERROR_INTERNET_SEC_CERT_REV_FAILED
,
ERROR_CANCELLED
,
0
},
{
ERROR_HTTP_COOKIE_NEEDS_CONFIRMATION
,
ERROR_HTTP_COOKIE_DECLINED
,
FLAG_TODO
},
{
ERROR_INTERNET_BAD_AUTO_PROXY_SCRIPT
,
ERROR_CANCELLED
,
FLAG_TODO
},
{
ERROR_INTERNET_UNABLE_TO_DOWNLOAD_SCRIPT
,
ERROR_CANCELLED
,
FLAG_TODO
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment