Commit 87e7c72f authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

rsaenh/tests: Fix a test failure on W2K and below.

parent 5da0debb
......@@ -831,8 +831,11 @@ static void test_rc2(void)
ok(result, "setting salt failed for size %d: %08x\n", i, GetLastError());
}
salt.cbData = 25;
SetLastError(0xdeadbeef);
result = CryptSetKeyParam(hKey, KP_SALT_EX, (BYTE *)&salt, 0);
ok(!result, "%08x\n", GetLastError());
ok(!result ||
broken(result), /* Win9x, WinMe, NT4, W2K */
"%08x\n", GetLastError());
result = CryptDestroyKey(hKey);
ok(result, "%08x\n", GetLastError());
......
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