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
0cd5f208
Commit
0cd5f208
authored
Oct 08, 2007
by
Juan Lang
Committed by
Alexandre Julliard
Oct 09, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintrust: Add generic chain action to known actions.
parent
e69cf802
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 @
0cd5f208
...
...
@@ -332,6 +332,7 @@ LONG WINAPI WinVerifyTrust( HWND hwnd, GUID *ActionID, LPVOID ActionData )
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
;
static
const
GUID
generic_chain_verify
=
WINTRUST_ACTION_GENERIC_CHAIN_VERIFY
;
LONG
err
=
ERROR_SUCCESS
;
WINTRUST_DATA
*
actionData
=
(
WINTRUST_DATA
*
)
ActionData
;
...
...
@@ -346,7 +347,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_cert_verify
))
!
IsEqualGUID
(
ActionID
,
&
generic_cert_verify
)
&&
!
IsEqualGUID
(
ActionID
,
&
generic_chain_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