From 025236281b55a63207adcc1fa183b2ab16361764 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 19 Nov 2003 04:44:47 +0000 Subject: possibly better handling of NULL secdesc (thanks to lukeh) (This used to be commit a1230f1b4b0b06d08bfe7c8a7e4863357db1ca5a) --- source4/librpc/idl/samr.idl | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'source4/librpc/idl') diff --git a/source4/librpc/idl/samr.idl b/source4/librpc/idl/samr.idl index aa3ab9c799..2b47abe461 100644 --- a/source4/librpc/idl/samr.idl +++ b/source4/librpc/idl/samr.idl @@ -34,11 +34,16 @@ /******************/ /* Function: 0x03 */ + + typedef struct { + uint32 sd_size; + [subcontext] security_descriptor *sd; + } samr_SdBuf; + NTSTATUS samr_QuerySecurity ( [in,ref] policy_handle *handle, [in] uint32 sec_info, - [out] uint32 *length, - [out,subcontext] security_descriptor *sd + [out] samr_SdBuf *sdbuf ); /******************/ -- cgit