advapi32: PP_USE_HARDWARE_RNG is a parameter, not a flag.

This commit is contained in:
Hans Leidekker 2014-01-10 16:50:40 +01:00 committed by Alexandre Julliard
parent c345023efe
commit 2722c45173
1 changed files with 1 additions and 1 deletions

View File

@ -2172,7 +2172,7 @@ BOOL WINAPI CryptSetProvParam (HCRYPTPROV hProv, DWORD dwParam, const BYTE *pbDa
SetLastError(ERROR_INVALID_PARAMETER);
return FALSE;
}
if (dwFlags & PP_USE_HARDWARE_RNG)
if (dwParam == PP_USE_HARDWARE_RNG)
{
FIXME("PP_USE_HARDWARE_RNG: What do I do with this?\n");
FIXME("\tLetting the CSP decide.\n");