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
19e63d11
Commit
19e63d11
authored
Dec 16, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
Dec 16, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cryptnet/tests: Fix some test failures on W2K with just SP3 or SP4.
parent
f27ba37b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
cryptnet.c
dlls/cryptnet/tests/cryptnet.c
+5
-2
No files found.
dlls/cryptnet/tests/cryptnet.c
View file @
19e63d11
...
...
@@ -670,9 +670,12 @@ static void test_verifyRevocation(void)
revPara
.
pftTimeToUse
=
&
time
;
ret
=
pCertVerifyRevocation
(
X509_ASN_ENCODING
,
CERT_CONTEXT_REVOCATION_TYPE
,
1
,
(
void
**
)
&
certs
[
1
],
0
,
&
revPara
,
&
status
);
ok
(
!
ret
&&
GetLastError
()
==
CRYPT_E_NO_REVOCATION_CHECK
,
ok
(
!
ret
,
"Expected failure
\n
"
);
ok
(
GetLastError
()
==
CRYPT_E_NO_REVOCATION_CHECK
||
broken
(
GetLastError
()
==
CRYPT_E_REVOKED
),
/* W2K SP3/SP4 */
"expected CRYPT_E_NO_REVOCATION_CHECK, got %08x
\n
"
,
GetLastError
());
ok
(
status
.
dwError
==
CRYPT_E_NO_REVOCATION_CHECK
,
ok
(
status
.
dwError
==
CRYPT_E_NO_REVOCATION_CHECK
||
broken
(
GetLastError
()
==
CRYPT_E_REVOKED
),
/* W2K SP3/SP4 */
"expected CRYPT_E_NO_REVOCATION_CHECK, got %08x
\n
"
,
status
.
dwError
);
ok
(
status
.
dwIndex
==
0
,
"expected index 0, got %d
\n
"
,
status
.
dwIndex
);
CertCloseStore
(
revPara
.
hCrlStore
,
0
);
...
...
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