Commit 08d0bc64 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

schannel/tests: Fix test failure on Windows 11.

parent 67d37355
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment