Account for permissions on Win2k.

oldstable
Jakob Eriksson 2005-03-05 10:47:13 +00:00 committed by Alexandre Julliard
parent 7674702238
commit 0667f919ab
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ static void test_lookupPrivilegeName(void)
luid.LowPart = i; luid.LowPart = i;
cchName = sizeof(buf); cchName = sizeof(buf);
ret = pLookupPrivilegeNameA(NULL, &luid, buf, &cchName); ret = pLookupPrivilegeNameA(NULL, &luid, buf, &cchName);
ok( ret, ok( ret && GetLastError() != ERROR_NO_SUCH_PRIVILEGE,
"LookupPrivilegeNameA(0.%ld) failed: %ld\n", i, GetLastError()); "LookupPrivilegeNameA(0.%ld) failed: %ld\n", i, GetLastError());
} }
/* check a bogus LUID */ /* check a bogus LUID */