diff options
author | Günther Deschner <gd@samba.org> | 2008-02-08 18:02:57 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-08 22:57:56 +0100 |
commit | 2b1d74981b435da3e48ae4b5652020147b54ae8b (patch) | |
tree | f89d2e007d89a607a7352f97550db03fa75a0cbd | |
parent | 96e41bbf61101519b6b37a5a4bf5e723b4464bdc (diff) | |
download | samba-2b1d74981b435da3e48ae4b5652020147b54ae8b.tar.gz samba-2b1d74981b435da3e48ae4b5652020147b54ae8b.tar.bz2 samba-2b1d74981b435da3e48ae4b5652020147b54ae8b.zip |
Fix rpccli_lsa_QueryTrustedDomainInfoByName() caller in rpcclient.
Guenther
(This used to be commit bdda909777dac08977a1d484d4e6e15e5dbfbba6)
-rw-r--r-- | source3/rpcclient/cmd_lsarpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpcclient/cmd_lsarpc.c b/source3/rpcclient/cmd_lsarpc.c index f71a6d6263..54791f143c 100644 --- a/source3/rpcclient/cmd_lsarpc.c +++ b/source3/rpcclient/cmd_lsarpc.c @@ -1012,7 +1012,7 @@ static NTSTATUS cmd_lsa_query_trustdominfobyname(struct rpc_pipe_client *cli, result = rpccli_lsa_QueryTrustedDomainInfoByName(cli, mem_ctx, &pol, - trusted_domain, + &trusted_domain, info_class, &info); if (!NT_STATUS_IS_OK(result)) |