mirror of
https://github.com/reactos/reactos.git
synced 2024-12-04 08:53:32 +08:00
[WINESYNC] msi/tests: Check the NT key first when retrieving registered owner and organization.
Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id dec192ce22283c4c0cb80337e0ce0904d9d9be89 by Hans Leidekker <hans@codeweavers.com>
This commit is contained in:
parent
8db2fe8cb4
commit
0d7b11abec
@ -2509,9 +2509,9 @@ static void check_reg_str(HKEY prodkey, LPCSTR name, LPCSTR expected, BOOL bcase
|
||||
else
|
||||
{
|
||||
if (bcase)
|
||||
ok_(__FILE__, line)(!lstrcmpA(val, expected), "Expected %s, got %s\n", expected, val);
|
||||
ok_(__FILE__, line)(!lstrcmpA(val, expected), "Expected \"%s\", got \"%s\"\n", expected, val);
|
||||
else
|
||||
ok_(__FILE__, line)(!lstrcmpiA(val, expected), "Expected %s, got %s\n", expected, val);
|
||||
ok_(__FILE__, line)(!lstrcmpiA(val, expected), "Expected \"%s\", got \"%s\"\n", expected, val);
|
||||
}
|
||||
}
|
||||
|
||||
@ -3411,7 +3411,7 @@ static void get_owner_company(LPSTR *owner, LPSTR *company)
|
||||
if (!*owner || !*company)
|
||||
{
|
||||
res = RegOpenKeyExA(HKEY_LOCAL_MACHINE,
|
||||
"Software\\Microsoft\\Windows\\CurrentVersion", 0, access, &hkey);
|
||||
"Software\\Microsoft\\Windows NT\\CurrentVersion", 0, access, &hkey);
|
||||
if (res == ERROR_SUCCESS)
|
||||
{
|
||||
*owner = reg_get_val_str(hkey, "RegisteredOwner");
|
||||
@ -3423,7 +3423,7 @@ static void get_owner_company(LPSTR *owner, LPSTR *company)
|
||||
if (!*owner || !*company)
|
||||
{
|
||||
res = RegOpenKeyExA(HKEY_LOCAL_MACHINE,
|
||||
"Software\\Microsoft\\Windows NT\\CurrentVersion", 0, access, &hkey);
|
||||
"Software\\Microsoft\\Windows\\CurrentVersion", 0, access, &hkey);
|
||||
if (res == ERROR_SUCCESS)
|
||||
{
|
||||
*owner = reg_get_val_str(hkey, "RegisteredOwner");
|
||||
|
Loading…
Reference in New Issue
Block a user