From 64e2ab3a22a6f2abb41fb59f3faf1949ff4b55f5 Mon Sep 17 00:00:00 2001 From: Paul Bryan Roberts Date: Mon, 3 Nov 2008 20:42:45 +0000 Subject: [PATCH 1/4] advapi32: GetFileSecurity() add TRACE --- dlls/advapi32/security.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/dlls/advapi32/security.c b/dlls/advapi32/security.c index 2093f7e..4c19f06 100644 --- a/dlls/advapi32/security.c +++ b/dlls/advapi32/security.c @@ -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; -- 1.5.4.3