diff options
author | Volker Lendecke <vl@samba.org> | 2008-07-20 11:04:31 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-07-20 17:37:14 +0200 |
commit | 99526d391dc274eb87cfd0b393363d8ceafccda9 (patch) | |
tree | b9b53237183aa5f6961425600c7faf06bdf0656f /source3/auth | |
parent | 52ff49600e6421828784a9e9aefbd1e94a290ed0 (diff) | |
download | samba-99526d391dc274eb87cfd0b393363d8ceafccda9.tar.gz samba-99526d391dc274eb87cfd0b393363d8ceafccda9.tar.bz2 samba-99526d391dc274eb87cfd0b393363d8ceafccda9.zip |
Refactoring: Change calling conventions for cli_rpc_pipe_open_schannel
Pass in ndr_syntax_id instead of pipe_idx, return NTSTATUS
(This used to be commit 1fcfca007f33a2c4e979abf30c2ea0db65bac718)
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/auth_domain.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/auth/auth_domain.c b/source3/auth/auth_domain.c index 2c67bf9f1c..c25e62ab80 100644 --- a/source3/auth/auth_domain.c +++ b/source3/auth/auth_domain.c @@ -109,8 +109,9 @@ static NTSTATUS connect_to_domain_password_server(struct cli_state **cli, /* open the netlogon pipe. */ if (lp_client_schannel()) { /* We also setup the creds chain in the open_schannel call. */ - netlogon_pipe = cli_rpc_pipe_open_schannel(*cli, PI_NETLOGON, - PIPE_AUTH_LEVEL_PRIVACY, domain, &result); + result = cli_rpc_pipe_open_schannel( + *cli, &ndr_table_netlogon.syntax_id, + PIPE_AUTH_LEVEL_PRIVACY, domain, &netlogon_pipe); } else { result = cli_rpc_pipe_open_noauth( *cli, &ndr_table_netlogon.syntax_id, &netlogon_pipe); |