summaryrefslogtreecommitdiff
path: root/librpc/gen_ndr/svcctl.h
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2009-04-09 13:25:21 +0200
committerGünther Deschner <gd@samba.org>2009-04-09 14:41:36 +0200
commit0ee3c433c84cd740960216535f181b59bedbd374 (patch)
tree64c4af70edc89906a0d2b1bc7ef5f9b1be5793b7 /librpc/gen_ndr/svcctl.h
parentf0d045be4fbbdc1cd3d76281b0cc3c2fc36e20de (diff)
downloadsamba-0ee3c433c84cd740960216535f181b59bedbd374.tar.gz
samba-0ee3c433c84cd740960216535f181b59bedbd374.tar.bz2
samba-0ee3c433c84cd740960216535f181b59bedbd374.zip
s3: re-run make samba3-idl.
Guenther
Diffstat (limited to 'librpc/gen_ndr/svcctl.h')
-rw-r--r--librpc/gen_ndr/svcctl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/librpc/gen_ndr/svcctl.h b/librpc/gen_ndr/svcctl.h
index f87d2cce0c..59bc0399d8 100644
--- a/librpc/gen_ndr/svcctl.h
+++ b/librpc/gen_ndr/svcctl.h
@@ -341,11 +341,11 @@ struct svcctl_QueryServiceObjectSecurity {
struct {
struct policy_handle *handle;/* [ref] */
uint32_t security_flags;
- uint32_t buffer_size;/* [range(0,0x40000)] */
+ uint32_t offered;/* [range(0,0x40000)] */
} in;
struct {
- uint8_t *buffer;/* [ref,size_is(buffer_size)] */
+ uint8_t *buffer;/* [ref,size_is(offered)] */
uint32_t *needed;/* [ref,range(0,0x40000)] */
WERROR result;
} out;
@@ -357,8 +357,8 @@ struct svcctl_SetServiceObjectSecurity {
struct {
struct policy_handle *handle;/* [ref] */
uint32_t security_flags;
- uint8_t *buffer;/* [ref,size_is(buffer_size)] */
- uint32_t buffer_size;
+ uint8_t *buffer;/* [ref,size_is(offered)] */
+ uint32_t offered;
} in;
struct {