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
9ab03dd7
Commit
9ab03dd7
authored
Dec 21, 2015
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32/tests: Don't check the exact number of cipher bits.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9f532321
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
schannel.c
dlls/secur32/tests/schannel.c
+1
-2
No files found.
dlls/secur32/tests/schannel.c
View file @
9ab03dd7
...
@@ -927,8 +927,7 @@ todo_wine
...
@@ -927,8 +927,7 @@ todo_wine
status
=
pQueryContextAttributesA
(
&
context
,
SECPKG_ATTR_CONNECTION_INFO
,
(
void
*
)
&
conn_info
);
status
=
pQueryContextAttributesA
(
&
context
,
SECPKG_ATTR_CONNECTION_INFO
,
(
void
*
)
&
conn_info
);
ok
(
status
==
SEC_E_OK
,
"QueryContextAttributesW(SECPKG_ATTR_CONNECTION_INFO) failed: %08x
\n
"
,
status
);
ok
(
status
==
SEC_E_OK
,
"QueryContextAttributesW(SECPKG_ATTR_CONNECTION_INFO) failed: %08x
\n
"
,
status
);
if
(
status
==
SEC_E_OK
)
{
if
(
status
==
SEC_E_OK
)
{
ok
(
conn_info
.
dwCipherStrength
==
128
||
conn_info
.
dwCipherStrength
==
168
,
ok
(
conn_info
.
dwCipherStrength
>=
128
,
"conn_info.dwCipherStrength = %d
\n
"
,
conn_info
.
dwCipherStrength
);
"conn_info.dwCipherStrength = %d
\n
"
,
conn_info
.
dwCipherStrength
);
ok
(
conn_info
.
dwHashStrength
>=
128
,
"conn_info.dwHashStrength = %d
\n
"
,
conn_info
.
dwHashStrength
);
ok
(
conn_info
.
dwHashStrength
>=
128
,
"conn_info.dwHashStrength = %d
\n
"
,
conn_info
.
dwHashStrength
);
}
}
...
...
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