summaryrefslogtreecommitdiff
path: root/librpc/idl/svcctl.idl
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-11-14 11:29:03 +0100
committerGünther Deschner <gd@samba.org>2008-11-17 13:16:44 +0100
commitabbd539082022166b7e3a222eb3dc050b3ae7279 (patch)
treebe3e8f16b7ab0277785f24ca798e4cfe1da6e26c /librpc/idl/svcctl.idl
parent4e0bbb6e7919212572ba66b8808d8cef1ec3e772 (diff)
downloadsamba-abbd539082022166b7e3a222eb3dc050b3ae7279.tar.gz
samba-abbd539082022166b7e3a222eb3dc050b3ae7279.tar.bz2
samba-abbd539082022166b7e3a222eb3dc050b3ae7279.zip
svcctl: fix idl for svcctl_QueryServiceConfig2W.
Guenther
Diffstat (limited to 'librpc/idl/svcctl.idl')
-rw-r--r--librpc/idl/svcctl.idl6
1 files changed, 3 insertions, 3 deletions
diff --git a/librpc/idl/svcctl.idl b/librpc/idl/svcctl.idl
index 92360501fb..7e18245e86 100644
--- a/librpc/idl/svcctl.idl
+++ b/librpc/idl/svcctl.idl
@@ -535,9 +535,9 @@ import "misc.idl", "security.idl";
WERROR svcctl_QueryServiceConfig2W(
[in,ref] policy_handle *handle,
[in] uint32 info_level,
- [out] uint8 buffer[buf_size],
- [in] uint32 buf_size,
- [out,ref] uint32 *bytes_needed
+ [out,ref,size_is(buf_size)] uint8 *buffer,
+ [in] [range(0,8192)] uint32 buf_size,
+ [out,ref] [range(0,8192)] uint32 *bytes_needed
);
/*****************/