rsaenh/tests: Fix some test failures on W2K.
This commit is contained in:
parent
ca38b8b951
commit
8fe8d61a62
|
@ -72,9 +72,15 @@ static void uniquecontainer(char *unique)
|
|||
HKEY hkey;
|
||||
char guid[MAX_PATH];
|
||||
DWORD size = MAX_PATH;
|
||||
HRESULT ret;
|
||||
|
||||
/* Get the MachineGUID */
|
||||
RegOpenKeyExA(HKEY_LOCAL_MACHINE, szCryptography, 0, KEY_READ | KEY_WOW64_64KEY, &hkey);
|
||||
ret = RegOpenKeyExA(HKEY_LOCAL_MACHINE, szCryptography, 0, KEY_READ | KEY_WOW64_64KEY, &hkey);
|
||||
if (ret == ERROR_ACCESS_DENIED)
|
||||
{
|
||||
/* Windows 2000 can't handle KEY_WOW64_64KEY */
|
||||
RegOpenKeyA(HKEY_LOCAL_MACHINE, szCryptography, &hkey);
|
||||
}
|
||||
RegQueryValueExA(hkey, szMachineGuid, NULL, NULL, (LPBYTE)guid, &size);
|
||||
RegCloseKey(hkey);
|
||||
|
||||
|
|
Loading…
Reference in New Issue