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
7bdee81c
Commit
7bdee81c
authored
Jun 06, 2008
by
Austin English
Committed by
Alexandre Julliard
Jun 09, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rsaenh: Fix a couple failing tests on 2k.
parent
15678133
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
rsaenh.c
dlls/rsaenh/tests/rsaenh.c
+4
-4
No files found.
dlls/rsaenh/tests/rsaenh.c
View file @
7bdee81c
...
@@ -1775,12 +1775,12 @@ static void test_null_provider(void)
...
@@ -1775,12 +1775,12 @@ static void test_null_provider(void)
ok
(
!
result
&&
GetLastError
()
==
NTE_BAD_PROV_TYPE
,
ok
(
!
result
&&
GetLastError
()
==
NTE_BAD_PROV_TYPE
,
"Expected NTE_BAD_PROV_TYPE, got %08x
\n
"
,
GetLastError
());
"Expected NTE_BAD_PROV_TYPE, got %08x
\n
"
,
GetLastError
());
result
=
CryptAcquireContext
(
NULL
,
szContainer
,
NULL
,
PROV_RSA_FULL
,
0
);
result
=
CryptAcquireContext
(
NULL
,
szContainer
,
NULL
,
PROV_RSA_FULL
,
0
);
ok
(
!
result
&&
GetLastError
()
==
ERROR_INVALID_PARAMETER
,
ok
(
!
result
&&
(
GetLastError
()
==
ERROR_INVALID_PARAMETER
||
GetLastError
()
==
NTE_BAD_KEYSET
)
,
"Expected ERROR_INVALID_PARAMETER, got %08x
\n
"
,
GetLastError
());
"Expected ERROR_INVALID_PARAMETER
or NTE_BAD_KEYSET
, got %08x
\n
"
,
GetLastError
());
result
=
CryptAcquireContext
(
NULL
,
szContainer
,
NULL
,
PROV_RSA_FULL
,
result
=
CryptAcquireContext
(
NULL
,
szContainer
,
NULL
,
PROV_RSA_FULL
,
CRYPT_DELETEKEYSET
);
CRYPT_DELETEKEYSET
);
ok
(
!
result
&&
GetLastError
()
==
ERROR_INVALID_PARAMETER
,
ok
(
!
result
&&
(
GetLastError
()
==
ERROR_INVALID_PARAMETER
||
GetLastError
()
==
NTE_BAD_KEYSET
)
,
"Expected ERROR_INVALID_PARAMETER, got %08x
\n
"
,
GetLastError
());
"Expected ERROR_INVALID_PARAMETER
or NTE_BAD_KEYSET
, got %08x
\n
"
,
GetLastError
());
result
=
CryptAcquireContext
(
&
prov
,
szContainer
,
NULL
,
PROV_RSA_FULL
,
result
=
CryptAcquireContext
(
&
prov
,
szContainer
,
NULL
,
PROV_RSA_FULL
,
CRYPT_DELETEKEYSET
);
CRYPT_DELETEKEYSET
);
ok
(
!
result
&&
GetLastError
()
==
NTE_BAD_KEYSET
,
ok
(
!
result
&&
GetLastError
()
==
NTE_BAD_KEYSET
,
...
...
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