summaryrefslogtreecommitdiff
path: root/librpc
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2009-04-09 10:19:03 +0200
committerKarolin Seeger <kseeger@samba.org>2009-04-15 09:08:14 +0200
commit9abb19e9b53714a735b4040e4ebbb0e1d144a007 (patch)
tree99f395ec7ca562a81f5238c8ed41458999b1d69a /librpc
parentf479da7585193e5c02f0d250c9e82ffe903bd1bb (diff)
downloadsamba-9abb19e9b53714a735b4040e4ebbb0e1d144a007.tar.gz
svcctl: Fix IDL for svcctl_QueryServiceObjectSecurity and Set call.
Guenther (cherry picked from commit f0d045be4fbbdc1cd3d76281b0cc3c2fc36e20de) (cherry picked from commit 38ff81c37ef26981c08ada5968d913303fc00cbe)
Diffstat (limited to 'librpc')
-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 2f461d68898..8bbf5142886 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
);
/*****************/