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
293c53e2
Commit
293c53e2
authored
Apr 16, 2014
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 16, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Fixed schannel tests on Windows 8.1.
parent
e838f0c2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
schannel.c
dlls/secur32/tests/schannel.c
+2
-1
No files found.
dlls/secur32/tests/schannel.c
View file @
293c53e2
...
...
@@ -809,7 +809,8 @@ todo_wine
status
=
pQueryContextAttributesA
(
&
context
,
SECPKG_ATTR_CONNECTION_INFO
,
(
void
*
)
&
conn_info
);
ok
(
status
==
SEC_E_OK
,
"QueryContextAttributesW(SECPKG_ATTR_CONNECTION_INFO) failed: %08x
\n
"
,
status
);
if
(
status
==
SEC_E_OK
)
{
ok
(
conn_info
.
dwCipherStrength
==
128
,
"conn_info.dwCipherStrength = %d
\n
"
,
conn_info
.
dwCipherStrength
);
ok
(
conn_info
.
dwCipherStrength
==
128
||
conn_info
.
dwCipherStrength
==
168
,
"conn_info.dwCipherStrength = %d
\n
"
,
conn_info
.
dwCipherStrength
);
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