diff options
author | Andrew Bartlett <abartlet@samba.org> | 2009-04-20 16:50:49 +0200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2009-04-20 16:50:49 +0200 |
commit | 53765c81f726a8c056cc4e57004592dd489975c9 (patch) | |
tree | 74fc6b3adcf876ce3b68f38c5ac0237bf02e66bb /source3/utils/net_rpc_join.c | |
parent | 8a5d94e329e8ee2e7d4e03b9719188cb50bc4978 (diff) | |
download | samba-53765c81f726a8c056cc4e57004592dd489975c9.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_rpc_join.c b/source3/utils/net_rpc_join.c index 58d6cdc5af9..1587793bdc0 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 " |