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/rpcclient | |
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/rpcclient')
-rw-r--r-- | source3/rpcclient/rpcclient.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c index dd8b911bb8..081e0fb15e 100644 --- a/source3/rpcclient/rpcclient.c +++ b/source3/rpcclient/rpcclient.c @@ -134,7 +134,7 @@ static void fetch_machine_sid(struct cli_state *cli) POLICY_HND pol; NTSTATUS result = NT_STATUS_OK; uint32 info_class = 5; - char *domain_name = NULL; + const char *domain_name = NULL; static bool got_domain_sid; TALLOC_CTX *mem_ctx; DOM_SID *dom_sid = NULL; |