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
08d0bc64
Commit
08d0bc64
authored
Sep 30, 2022
by
Hans Leidekker
Committed by
Alexandre Julliard
Oct 12, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
schannel/tests: Fix test failure on Windows 11.
parent
67d37355
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
main.c
dlls/schannel/tests/main.c
+2
-1
No files found.
dlls/schannel/tests/main.c
View file @
08d0bc64
...
...
@@ -122,7 +122,8 @@ static void testInitialize(void)
status
=
pSpUserModeInitialize
(
SECPKG_INTERFACE_VERSION
,
&
Version
,
&
pUserTables
,
&
cUserTables
);
ok
(
status
==
STATUS_SUCCESS
,
"status: 0x%lx
\n
"
,
status
);
ok
(
Version
==
SECPKG_INTERFACE_VERSION
,
"Version: 0x%lx
\n
"
,
Version
);
ok
(
Version
==
SECPKG_INTERFACE_VERSION
||
Version
==
SECPKG_INTERFACE_VERSION_2
/* win11 */
,
"Version: 0x%lx
\n
"
,
Version
);
ok
(
cUserTables
==
2
||
broken
(
cUserTables
==
4
),
/* Win2k */
"cUserTables: %ld
\n
"
,
cUserTables
);
...
...
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