diff options
author | Günther Deschner <gd@samba.org> | 2008-02-04 21:40:15 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-04 22:12:40 +0100 |
commit | 649d1a82ca7308d2645bd1e21423d4dd2b5b2094 (patch) | |
tree | 6882625343b3767ae4fb39ab22a76afd7fc3ed66 | |
parent | a64cd55101ca69d7d8855964cb2b8864e039cac3 (diff) | |
download | samba-649d1a82ca7308d2645bd1e21423d4dd2b5b2094.tar.gz samba-649d1a82ca7308d2645bd1e21423d4dd2b5b2094.tar.bz2 samba-649d1a82ca7308d2645bd1e21423d4dd2b5b2094.zip |
Use rpccli_lsa_QuerySecurity() in rpcclient.
Guenther
(This used to be commit c07be0f1a9856dbbb80d0dbacf7b86024eed4436)
-rw-r--r-- | source3/rpcclient/cmd_lsarpc.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/rpcclient/cmd_lsarpc.c b/source3/rpcclient/cmd_lsarpc.c index 05269d7711..627f6081bc 100644 --- a/source3/rpcclient/cmd_lsarpc.c +++ b/source3/rpcclient/cmd_lsarpc.c @@ -879,8 +879,10 @@ static NTSTATUS cmd_lsa_query_secobj(struct rpc_pipe_client *cli, if (!NT_STATUS_IS_OK(result)) goto done; - result = rpccli_lsa_query_secobj(cli, mem_ctx, &pol, sec_info, &sdb); - + result = rpccli_lsa_QuerySecurity(cli, mem_ctx, + &pol, + sec_info, + &sdb); if (!NT_STATUS_IS_OK(result)) goto done; |