Commit 58bff4e3 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

advapi32: Fix the English language check.

parent b25e0068
...@@ -1917,7 +1917,7 @@ static void test_LookupAccountName(void) ...@@ -1917,7 +1917,7 @@ static void test_LookupAccountName(void)
domain_size = domain_save; domain_size = domain_save;
sid_size = sid_save; sid_size = sid_save;
if (GetSystemDefaultLangID() != LANG_ENGLISH) if (PRIMARYLANGID(GetSystemDefaultLangID()) != LANG_ENGLISH)
{ {
skip("Non-english locale (test with hardcoded 'Everyone')\n"); skip("Non-english locale (test with hardcoded 'Everyone')\n");
} }
...@@ -2055,7 +2055,7 @@ static void test_LookupAccountName(void) ...@@ -2055,7 +2055,7 @@ static void test_LookupAccountName(void)
return; return;
} }
if (GetSystemDefaultLangID() != LANG_ENGLISH) if (PRIMARYLANGID(GetSystemDefaultLangID()) != LANG_ENGLISH)
{ {
skip("Non-english locale (skipping well known name creation tests)\n"); skip("Non-english locale (skipping well known name creation tests)\n");
return; return;
...@@ -2542,7 +2542,7 @@ static void test_SetEntriesInAclW(void) ...@@ -2542,7 +2542,7 @@ static void test_SetEntriesInAclW(void)
ok(NewAcl != NULL, "returned acl was NULL\n"); ok(NewAcl != NULL, "returned acl was NULL\n");
LocalFree(NewAcl); LocalFree(NewAcl);
if (GetSystemDefaultLangID() != LANG_ENGLISH) if (PRIMARYLANGID(GetSystemDefaultLangID()) != LANG_ENGLISH)
{ {
skip("Non-english locale (test with hardcoded 'Everyone')\n"); skip("Non-english locale (test with hardcoded 'Everyone')\n");
} }
...@@ -2673,7 +2673,7 @@ static void test_SetEntriesInAclA(void) ...@@ -2673,7 +2673,7 @@ static void test_SetEntriesInAclA(void)
ok(NewAcl != NULL, "returned acl was NULL\n"); ok(NewAcl != NULL, "returned acl was NULL\n");
LocalFree(NewAcl); LocalFree(NewAcl);
if (GetSystemDefaultLangID() != LANG_ENGLISH) if (PRIMARYLANGID(GetSystemDefaultLangID()) != LANG_ENGLISH)
{ {
skip("Non-english locale (test with hardcoded 'Everyone')\n"); skip("Non-english locale (test with hardcoded 'Everyone')\n");
} }
......
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