diff options
author | Günther Deschner <gd@samba.org> | 2008-01-14 17:16:31 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-01-14 17:16:31 +0100 |
commit | 495c38e5463559505500ac1106c27481ad0036e0 (patch) | |
tree | 8b5b9e639d36617bec74935516d150f54e94609e /source3/librpc | |
parent | 862e1685b8b4f0ec76b5f715d39781e0fd8fa4f0 (diff) | |
download | samba-495c38e5463559505500ac1106c27481ad0036e0.tar.gz samba-495c38e5463559505500ac1106c27481ad0036e0.tar.bz2 samba-495c38e5463559505500ac1106c27481ad0036e0.zip |
Fix prototypes for lsa set info policy calls.
Guenther
(This used to be commit 33f6eff92b6bdf804d54c84375cece8a867933f2)
Diffstat (limited to 'source3/librpc')
-rw-r--r-- | source3/librpc/gen_ndr/cli_lsa.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/source3/librpc/gen_ndr/cli_lsa.h b/source3/librpc/gen_ndr/cli_lsa.h index ad5e60d591..59c0b9293d 100644 --- a/source3/librpc/gen_ndr/cli_lsa.h +++ b/source3/librpc/gen_ndr/cli_lsa.h @@ -34,7 +34,10 @@ NTSTATUS rpccli_lsa_QueryInfoPolicy(struct rpc_pipe_client *cli, uint16_t level, union lsa_PolicyInformation *info); NTSTATUS rpccli_lsa_SetInfoPolicy(struct rpc_pipe_client *cli, - TALLOC_CTX *mem_ctx); + TALLOC_CTX *mem_ctx, + struct policy_handle *handle, + uint16_t level, + union lsa_PolicyInformation *info); NTSTATUS rpccli_lsa_ClearAuditLog(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx); NTSTATUS rpccli_lsa_CreateAccount(struct rpc_pipe_client *cli, @@ -215,7 +218,10 @@ NTSTATUS rpccli_lsa_QueryInfoPolicy2(struct rpc_pipe_client *cli, uint16_t level, union lsa_PolicyInformation *info); NTSTATUS rpccli_lsa_SetInfoPolicy2(struct rpc_pipe_client *cli, - TALLOC_CTX *mem_ctx); + TALLOC_CTX *mem_ctx, + struct policy_handle *handle, + uint16_t level, + union lsa_PolicyInformation *info); NTSTATUS rpccli_lsa_QueryTrustedDomainInfoByName(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, struct policy_handle *handle, |