diff options
author | Günther Deschner <gd@samba.org> | 2013-05-24 13:03:23 +0200 |
---|---|---|
committer | Andreas Schneider <asn@samba.org> | 2013-08-05 10:29:59 +0200 |
commit | f6d61b571d79ebf1df58513ec728057d00b95f3e (patch) | |
tree | c7de7fc22099ac690c779a712c68a9aaf942b2b3 /source3/auth | |
parent | 6886cff0a7e97864e9094af936cbef08a3c8f6f4 (diff) | |
download | samba-f6d61b571d79ebf1df58513ec728057d00b95f3e.tar.gz samba-f6d61b571d79ebf1df58513ec728057d00b95f3e.tar.bz2 samba-f6d61b571d79ebf1df58513ec728057d00b95f3e.zip |
s3-rpc_cli: pass down ndr_interface_table to cli_rpc_pipe_open_schannel().
Guenther
Signed-off-by: Günther Deschner <gd@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/auth_domain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/auth_domain.c b/source3/auth/auth_domain.c index 286c75c786..a375f11354 100644 --- a/source3/auth/auth_domain.c +++ b/source3/auth/auth_domain.c @@ -115,7 +115,7 @@ static NTSTATUS connect_to_domain_password_server(struct cli_state **cli, if (lp_client_schannel()) { /* We also setup the creds chain in the open_schannel call. */ result = cli_rpc_pipe_open_schannel( - *cli, &ndr_table_netlogon.syntax_id, NCACN_NP, + *cli, &ndr_table_netlogon, NCACN_NP, DCERPC_AUTH_LEVEL_PRIVACY, domain, &netlogon_pipe); } else { result = cli_rpc_pipe_open_noauth( |