diff options
author | Jeremy Allison <jra@samba.org> | 2006-02-12 16:45:50 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:10:05 -0500 |
commit | d3196b85c9d1286b89005ed52dc5b955ee83b8b0 (patch) | |
tree | db1b44d3a76dd780e5a9b644365a80fc8a088f3a | |
parent | d672d8fd6bd2957f6177c809c77b3d2c1a2fddca (diff) | |
download | samba-d3196b85c9d1286b89005ed52dc5b955ee83b8b0.tar.gz samba-d3196b85c9d1286b89005ed52dc5b955ee83b8b0.tar.bz2 samba-d3196b85c9d1286b89005ed52dc5b955ee83b8b0.zip |
r13475: Fix erroneous initialization caused by my renaming types.
Jeremy.
(This used to be commit e8e2fc79b4afd6625e1d50e23b31eb49f67526d9)
-rw-r--r-- | source3/rpc_client/cli_lsarpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_client/cli_lsarpc.c b/source3/rpc_client/cli_lsarpc.c index 9331d09093..58443023f2 100644 --- a/source3/rpc_client/cli_lsarpc.c +++ b/source3/rpc_client/cli_lsarpc.c @@ -343,7 +343,7 @@ NTSTATUS rpccli_lsa_lookup_names(struct rpc_pipe_client *cli, } for (i = 0; i < num_names; i++) { - DOM_RID2 *t_rids = r.dom_rid; + DOM_RID *t_rids = r.dom_rid; uint32 dom_idx = t_rids[i].rid_idx; uint32 dom_rid = t_rids[i].rid; DOM_SID *sid = &(*sids)[i]; |