diff options
-rw-r--r-- | source3/modules/vfs_acl_common.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source3/modules/vfs_acl_common.c b/source3/modules/vfs_acl_common.c index 8ea0fb8b16..a6ea75f45c 100644 --- a/source3/modules/vfs_acl_common.c +++ b/source3/modules/vfs_acl_common.c @@ -395,6 +395,13 @@ static NTSTATUS get_nt_acl_internal(vfs_handle_struct *handle, TALLOC_FREE(blob.data); *ppdesc = psd; + + if (DEBUGLEVEL >= 10) { + DEBUG(10,("get_nt_acl_internal: returning acl for %s is:\n", + name )); + NDR_PRINT_DEBUG(security_descriptor, psd); + } + return NT_STATUS_OK; } |