summaryrefslogtreecommitdiffstats
path: root/source/rpc_client
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2007-06-27 11:42:17 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:23:38 -0500
commite9a7512a9f630340004913f1379452eea8a9b6ae (patch)
treefb5433f0fff04b0e1ae71d8e381acf3f32d18ee9 /source/rpc_client
parent555ae4a19b35b0672033798e00e3d1e153d2a9b3 (diff)
downloadsamba-e9a7512a9f630340004913f1379452eea8a9b6ae.tar.gz
samba-e9a7512a9f630340004913f1379452eea8a9b6ae.tar.xz
samba-e9a7512a9f630340004913f1379452eea8a9b6ae.zip
r23627: Allow to pass down the lookup-level to rpccli_lsa_lookup_names().
Guenther
Diffstat (limited to 'source/rpc_client')
-rw-r--r--source/rpc_client/cli_lsarpc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/rpc_client/cli_lsarpc.c b/source/rpc_client/cli_lsarpc.c
index ed70bc1752f..00c65d15aaa 100644
--- a/source/rpc_client/cli_lsarpc.c
+++ b/source/rpc_client/cli_lsarpc.c
@@ -448,6 +448,7 @@ NTSTATUS rpccli_lsa_lookup_names(struct rpc_pipe_client *cli,
POLICY_HND *pol, int num_names,
const char **names,
const char ***dom_names,
+ int level,
DOM_SID **sids,
enum lsa_SidType **types)
{
@@ -464,7 +465,7 @@ NTSTATUS rpccli_lsa_lookup_names(struct rpc_pipe_client *cli,
ZERO_STRUCT(ref);
r.dom_ref = &ref;
- init_q_lookup_names(mem_ctx, &q, pol, num_names, names);
+ init_q_lookup_names(mem_ctx, &q, pol, num_names, names, level);
CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_LOOKUPNAMES,
q, r,