Commit b834a984 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

schannel/tests: Relax GetInfo return value test.

parent a5c66523
......@@ -219,11 +219,11 @@ static void testGetInfo(void)
return;
}
status = pTables->GetInfo(&PackageInfo);
ok(status == STATUS_SUCCESS ||
ok(SUCCEEDED(status) ||
status == SEC_E_UNSUPPORTED_FUNCTION, /* win2k3 */
"status: 0x%x\n", status);
if (status == STATUS_SUCCESS)
if (SUCCEEDED(status))
{
ok(PackageInfo.fCapabilities == LSA_BASE_CAPS ||
PackageInfo.fCapabilities == (LSA_BASE_CAPS|SECPKG_FLAG_APPCONTAINER_PASSTHROUGH),
......
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