summaryrefslogtreecommitdiff
path: root/source3/librpc/gen_ndr/cli_svcctl.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-02-28 00:18:37 +0100
committerGünther Deschner <gd@samba.org>2008-02-28 00:43:31 +0100
commit8b23d4a6c3e615015ef230070a3f4f9ee5095d2a (patch)
tree2f22f922e1b82f3c1d74d71a1d2701c82c887928 /source3/librpc/gen_ndr/cli_svcctl.c
parent6135d08bcfd7150453f479c2dd8a91a7fd2a824c (diff)
downloadsamba-8b23d4a6c3e615015ef230070a3f4f9ee5095d2a.tar.gz
samba-8b23d4a6c3e615015ef230070a3f4f9ee5095d2a.tar.bz2
samba-8b23d4a6c3e615015ef230070a3f4f9ee5095d2a.zip
Re-run make idl.
Guenther (This used to be commit 86061904136706443e5abfda254a2c3a14ffd304)
Diffstat (limited to 'source3/librpc/gen_ndr/cli_svcctl.c')
-rw-r--r--source3/librpc/gen_ndr/cli_svcctl.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/librpc/gen_ndr/cli_svcctl.c b/source3/librpc/gen_ndr/cli_svcctl.c
index 42711e3174..b8f18afe1c 100644
--- a/source3/librpc/gen_ndr/cli_svcctl.c
+++ b/source3/librpc/gen_ndr/cli_svcctl.c
@@ -243,12 +243,20 @@ NTSTATUS rpccli_svcctl_QueryServiceObjectSecurity(struct rpc_pipe_client *cli,
NTSTATUS rpccli_svcctl_SetServiceObjectSecurity(struct rpc_pipe_client *cli,
TALLOC_CTX *mem_ctx,
+ struct policy_handle *handle,
+ uint32_t security_flags,
+ uint8_t *buffer,
+ uint32_t buffer_size,
WERROR *werror)
{
struct svcctl_SetServiceObjectSecurity r;
NTSTATUS status;
/* In parameters */
+ r.in.handle = handle;
+ r.in.security_flags = security_flags;
+ r.in.buffer = buffer;
+ r.in.buffer_size = buffer_size;
if (DEBUGLEVEL >= 10) {
NDR_PRINT_IN_DEBUG(svcctl_SetServiceObjectSecurity, &r);