Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
07979b99
Commit
07979b99
authored
Sep 28, 2007
by
Juan Lang
Committed by
Alexandre Julliard
Oct 01, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintrust: Don't warn for generic cert verify action.
parent
d7d4a5c4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
wintrust_main.c
dlls/wintrust/wintrust_main.c
+3
-1
No files found.
dlls/wintrust/wintrust_main.c
View file @
07979b99
...
...
@@ -222,6 +222,7 @@ LONG WINAPI WinVerifyTrust( HWND hwnd, GUID *ActionID, LPVOID ActionData )
0x00
,
0xC0
,
0x4F
,
0xC2
,
0x95
,
0xEE
}
};
static
const
GUID
published_software
=
WIN_SPUB_ACTION_PUBLISHED_SOFTWARE
;
static
const
GUID
generic_verify_v2
=
WINTRUST_ACTION_GENERIC_VERIFY_V2
;
static
const
GUID
generic_cert_verify
=
WINTRUST_ACTION_GENERIC_CERT_VERIFY
;
LONG
err
=
ERROR_SUCCESS
;
WINTRUST_DATA
*
actionData
=
(
WINTRUST_DATA
*
)
ActionData
;
...
...
@@ -234,7 +235,8 @@ LONG WINAPI WinVerifyTrust( HWND hwnd, GUID *ActionID, LPVOID ActionData )
{
/* Check known actions to warn of possible problems */
if
(
!
IsEqualGUID
(
ActionID
,
&
unknown
)
&&
!
IsEqualGUID
(
ActionID
,
&
generic_verify_v2
))
!
IsEqualGUID
(
ActionID
,
&
generic_verify_v2
)
&&
!
IsEqualGUID
(
ActionID
,
&
generic_cert_verify
))
WARN
(
"unknown action %s, default behavior may not be right
\n
"
,
debugstr_guid
(
ActionID
));
switch
(
actionData
->
dwStateAction
)
...
...
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