From f0d045be4fbbdc1cd3d76281b0cc3c2fc36e20de Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 9 Apr 2009 10:19:03 +0200 Subject: svcctl: Fix IDL for svcctl_QueryServiceObjectSecurity and Set call. Guenther --- librpc/idl/svcctl.idl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'librpc/idl') diff --git a/librpc/idl/svcctl.idl b/librpc/idl/svcctl.idl index 2f461d6889..8bbf514288 100644 --- a/librpc/idl/svcctl.idl +++ b/librpc/idl/svcctl.idl @@ -156,9 +156,9 @@ import "misc.idl", "security.idl"; /* Function 0x04 */ WERROR svcctl_QueryServiceObjectSecurity( [in] policy_handle *handle, - [in] uint32 security_flags, - [out,ref,size_is(buffer_size)] uint8 *buffer, - [in,range(0,0x40000)] uint32 buffer_size, + [in] security_secinfo security_flags, + [out,ref,size_is(offered)] uint8 *buffer, + [in,range(0,0x40000)] uint32 offered, [out,ref,range(0,0x40000)] uint32 *needed ); @@ -166,9 +166,9 @@ import "misc.idl", "security.idl"; /* Function 0x05 */ WERROR svcctl_SetServiceObjectSecurity( [in] policy_handle *handle, - [in] uint32 security_flags, - [in,ref,size_is(buffer_size)] uint8 *buffer, - [in] uint32 buffer_size + [in] security_secinfo security_flags, + [in,ref,size_is(offered)] uint8 *buffer, + [in] uint32 offered ); /*****************/ -- cgit