Commit 30af06f7 authored by Jakob Eriksson's avatar Jakob Eriksson Committed by Alexandre Julliard

Fix for NT4 behaviour.

parent 5054c798
......@@ -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 */
......
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