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
committerKarolin Seeger <kseeger@samba.org>2009-04-15 09:08:14 +0200
commitbbf1e906fc250ff08bd0802f48c9138046037c70 (patch)
treebf282b2ffcd8c3be5527952c09e136a4ff965d75 /librpc/gen_ndr/svcctl.h
parent9abb19e9b53714a735b4040e4ebbb0e1d144a007 (diff)
downloadsamba-bbf1e906fc250ff08bd0802f48c9138046037c70.tar.gz
s3: re-run make samba3-idl.
Guenther (cherry picked from commit 0ee3c433c84cd740960216535f181b59bedbd374) (cherry picked from commit 1763968949d23b180e6905a35ea7862190cb9cf4)
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 f87d2cce0c9..59bc0399d8f 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 {