summaryrefslogtreecommitdiff
path: root/librpc/idl/svcctl.idl
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2009-04-09 10:19:03 +0200
committerGünther Deschner <gd@samba.org>2009-04-09 14:41:29 +0200
commitf0d045be4fbbdc1cd3d76281b0cc3c2fc36e20de (patch)
tree4e18cf93351437aaef1031394fbbb19eb3032551 /librpc/idl/svcctl.idl
parent9945d15a5d184dc9a809072b7c01e5ddff96d26b (diff)
downloadsamba-f0d045be4fbbdc1cd3d76281b0cc3c2fc36e20de.tar.gz
samba-f0d045be4fbbdc1cd3d76281b0cc3c2fc36e20de.tar.bz2
samba-f0d045be4fbbdc1cd3d76281b0cc3c2fc36e20de.zip
svcctl: Fix IDL for svcctl_QueryServiceObjectSecurity and Set call.
Guenther
Diffstat (limited to 'librpc/idl/svcctl.idl')
-rw-r--r--librpc/idl/svcctl.idl12
1 files changed, 6 insertions, 6 deletions
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
);
/*****************/