From: Jeremy Allison Date: Thu, 13 Nov 2008 03:26:58 +0000 (-0800) Subject: Pretty print out SD's on get/set. X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ddd3e0524707d732143c1fb831c1ce2bf67dc2bf;p=thirdparty%2Fsamba.git Pretty print out SD's on get/set. Jeremy. --- diff --git a/source/smbd/nttrans.c b/source/smbd/nttrans.c index 13caf77b983..44578830638 100644 --- a/source/smbd/nttrans.c +++ b/source/smbd/nttrans.c @@ -774,6 +774,11 @@ static NTSTATUS set_sd(files_struct *fsp, uint8 *data, uint32 sd_len, security_info_sent &= ~DACL_SECURITY_INFORMATION; } + if (DEBUGLEVEL >= 10) { + DEBUG(10,("set_sd for file %s\n", fsp->fsp_name )); + NDR_PRINT_DEBUG(security_descriptor, psd); + } + if (fsp->fh->fd != -1) { status = SMB_VFS_FSET_NT_ACL(fsp, security_info_sent, psd); } @@ -1647,6 +1652,11 @@ static void call_nt_transact_query_security_desc(connection_struct *conn, DEBUG(3,("call_nt_transact_query_security_desc: sd_size = %lu.\n",(unsigned long)sd_size)); + if (DEBUGLEVEL >= 10) { + DEBUG(10,("call_nt_transact_query_security_desc for file %s\n", fsp->fsp_name )); + NDR_PRINT_DEBUG(security_descriptor, psd); + } + SIVAL(params,0,(uint32)sd_size); if (max_data_count < sd_size) {