Commit 0667f919 authored by Jakob Eriksson's avatar Jakob Eriksson Committed by Alexandre Julliard

Account for permissions on Win2k.

parent 76747022
......@@ -287,7 +287,7 @@ static void test_lookupPrivilegeName(void)
luid.LowPart = i;
cchName = sizeof(buf);
ret = pLookupPrivilegeNameA(NULL, &luid, buf, &cchName);
ok( ret,
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