diff options
author | Günther Deschner <gd@samba.org> | 2008-01-15 16:40:02 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-01-15 16:40:22 +0100 |
commit | c920764b1960f86482a24d4b4462664b07d4f1a9 (patch) | |
tree | d5125f721cb2d9d4dbff0b7523ec6f605f458b42 /source3/rpc_client/cli_lsarpc.c | |
parent | bd8f1f71ac1a8031cd8aa213c2201013860e55fc (diff) | |
download | samba-c920764b1960f86482a24d4b4462664b07d4f1a9.tar.gz samba-c920764b1960f86482a24d4b4462664b07d4f1a9.tar.bz2 samba-c920764b1960f86482a24d4b4462664b07d4f1a9.zip |
Apply const to rpccli_lsa_query_info_policy() and rpccli_lsa_query_info_policy2().
Guenther
(This used to be commit 7a3fe68bef7acde9d9f8a7a44ce7e9432f3c5a95)
Diffstat (limited to 'source3/rpc_client/cli_lsarpc.c')
-rw-r--r-- | source3/rpc_client/cli_lsarpc.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/source3/rpc_client/cli_lsarpc.c b/source3/rpc_client/cli_lsarpc.c index 77ade5cba1..286cc210e2 100644 --- a/source3/rpc_client/cli_lsarpc.c +++ b/source3/rpc_client/cli_lsarpc.c @@ -542,7 +542,8 @@ NTSTATUS rpccli_lsa_query_info_policy2_new(struct rpc_pipe_client *cli, TALLOC_C NTSTATUS rpccli_lsa_query_info_policy(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, POLICY_HND *pol, uint16 info_class, - char **domain_name, DOM_SID **domain_sid) + const char **domain_name, + DOM_SID **domain_sid) { prs_struct qbuf, rbuf; LSA_Q_QUERY_INFO q; @@ -632,8 +633,9 @@ NTSTATUS rpccli_lsa_query_info_policy(struct rpc_pipe_client *cli, NTSTATUS rpccli_lsa_query_info_policy2(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, POLICY_HND *pol, uint16 info_class, - char **domain_name, char **dns_name, - char **forest_name, + const char **domain_name, + const char **dns_name, + const char **forest_name, struct GUID **domain_guid, DOM_SID **domain_sid) { |