summaryrefslogtreecommitdiff
path: root/source3/utils/net_rpc_join.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2009-04-20 16:50:49 +0200
committerAndrew Bartlett <abartlet@samba.org>2009-04-20 16:50:49 +0200
commit53765c81f726a8c056cc4e57004592dd489975c9 (patch)
tree74fc6b3adcf876ce3b68f38c5ac0237bf02e66bb /source3/utils/net_rpc_join.c
parent8a5d94e329e8ee2e7d4e03b9719188cb50bc4978 (diff)
downloadsamba-53765c81f726a8c056cc4e57004592dd489975c9.tar.gz
samba-53765c81f726a8c056cc4e57004592dd489975c9.tar.bz2
samba-53765c81f726a8c056cc4e57004592dd489975c9.zip
Remove use of talloc_reference in cli_rpc_pipe_open_schannel_with_key()
Diffstat (limited to 'source3/utils/net_rpc_join.c')
-rw-r--r--source3/utils/net_rpc_join.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_rpc_join.c b/source3/utils/net_rpc_join.c
index 58d6cdc5af..1587793bdc 100644
--- a/source3/utils/net_rpc_join.c
+++ b/source3/utils/net_rpc_join.c
@@ -102,7 +102,7 @@ NTSTATUS net_rpc_join_ok(struct net_context *c, const char *domain,
ntret = cli_rpc_pipe_open_schannel_with_key(
cli, &ndr_table_netlogon.syntax_id, PIPE_AUTH_LEVEL_PRIVACY,
- domain, netlogon_pipe->dc, &pipe_hnd);
+ domain, &netlogon_pipe->dc, &pipe_hnd);
if (!NT_STATUS_IS_OK(ntret)) {
DEBUG(0,("net_rpc_join_ok: failed to open schannel session "