summaryrefslogtreecommitdiff
path: root/source3/libnet
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/libnet
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/libnet')
-rw-r--r--source3/libnet/libnet_join.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libnet/libnet_join.c b/source3/libnet/libnet_join.c
index 724cc90596..8e75d36fe3 100644
--- a/source3/libnet/libnet_join.c
+++ b/source3/libnet/libnet_join.c
@@ -1072,7 +1072,7 @@ NTSTATUS libnet_join_ok(const char *netbios_domain_name,
status = cli_rpc_pipe_open_schannel_with_key(
cli, &ndr_table_netlogon.syntax_id, PIPE_AUTH_LEVEL_PRIVACY,
- netbios_domain_name, netlogon_pipe->dc, &pipe_hnd);
+ netbios_domain_name, &netlogon_pipe->dc, &pipe_hnd);
cli_shutdown(cli);