advapi32: Add TRACE to GetFileSecurity().
This commit is contained in:
parent
fa9c9f0e4c
commit
2703721860
|
@ -1915,6 +1915,10 @@ GetFileSecurityW( LPCWSTR lpFileName,
|
|||
NTSTATUS status;
|
||||
DWORD access = 0;
|
||||
|
||||
TRACE("(%s,%d,%p,%d,%p)\n", debugstr_w(lpFileName),
|
||||
RequestedInformation, pSecurityDescriptor,
|
||||
nLength, lpnLengthNeeded);
|
||||
|
||||
if (RequestedInformation & (OWNER_SECURITY_INFORMATION|GROUP_SECURITY_INFORMATION|
|
||||
DACL_SECURITY_INFORMATION))
|
||||
access |= READ_CONTROL;
|
||||
|
|
Loading…
Reference in New Issue