mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 14:10:32 +00:00
advapi32: Fix test failure on some NT4 machines.
This commit is contained in:
parent
c0c781b14d
commit
f36b593498
@ -945,7 +945,8 @@ static void test_machine_guid(void)
|
||||
r);
|
||||
/* Create and release a provider */
|
||||
ret = pCryptAcquireContextA(&hCryptProv, szKeySet, NULL, PROV_RSA_FULL, 0);
|
||||
ok(ret, "CryptAcquireContextA failed: %08x\n", GetLastError());
|
||||
ok(ret || broken(!ret && GetLastError() == NTE_KEYSET_ENTRY_BAD /* NT4 */),
|
||||
"CryptAcquireContextA failed: %08x\n", GetLastError());
|
||||
pCryptReleaseContext(hCryptProv, 0);
|
||||
|
||||
if (restoreGuid)
|
||||
|
Loading…
Reference in New Issue
Block a user