Fix for NT4 behaviour.

This commit is contained in:
Jakob Eriksson 2005-03-22 16:39:02 +00:00 committed by Alexandre Julliard
parent 5054c79880
commit 30af06f788
1 changed files with 1 additions and 1 deletions

View File

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