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
42be55d7
Commit
42be55d7
authored
Feb 06, 2009
by
Juan Lang
Committed by
Alexandre Julliard
Feb 09, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Fix a regression in chain tests.
Relaxing the tests on older versions of Windows caused a couple tests to fail on more recent ones, which was unintended.
parent
e9996b9b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
chain.c
dlls/crypt32/tests/chain.c
+3
-2
No files found.
dlls/crypt32/tests/chain.c
View file @
42be55d7
...
...
@@ -1183,7 +1183,7 @@ static void checkElementStatus(const CERT_TRUST_STATUS *expected,
else
ok
(
got
->
dwErrorStatus
==
expected
->
dwErrorStatus
||
broken
((
got
->
dwErrorStatus
&
~
ignore
->
dwErrorStatus
)
==
expected
->
dwErrorStatus
),
(
expected
->
dwErrorStatus
&
~
ignore
->
dwErrorStatus
)
),
"Chain %d, element [%d,%d]: expected error %08x, got %08x
\n
"
,
testIndex
,
chainIndex
,
elementIndex
,
expected
->
dwErrorStatus
,
got
->
dwErrorStatus
);
...
...
@@ -1258,7 +1258,8 @@ static void checkChainStatus(PCCERT_CHAIN_CONTEXT chain,
chainStatus
->
status
.
dwErrorStatus
||
broken
((
chain
->
TrustStatus
.
dwErrorStatus
&
~
chainStatus
->
statusToIgnore
.
dwErrorStatus
)
==
chainStatus
->
status
.
dwErrorStatus
),
(
chainStatus
->
status
.
dwErrorStatus
&
~
chainStatus
->
statusToIgnore
.
dwErrorStatus
)),
"Chain %d: expected error %08x, got %08x
\n
"
,
testIndex
,
chainStatus
->
status
.
dwErrorStatus
,
chain
->
TrustStatus
.
dwErrorStatus
);
...
...
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