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/rpcclient | |
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/rpcclient')
-rw-r--r-- | source3/rpcclient/rpcclient.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c index eac96d3957..aff3cac1af 100644 --- a/source3/rpcclient/rpcclient.c +++ b/source3/rpcclient/rpcclient.c @@ -606,11 +606,12 @@ static NTSTATUS do_cmd(struct cli_state *cli, &cmd_entry->rpc_pipe); break; case PIPE_AUTH_TYPE_SCHANNEL: - cmd_entry->rpc_pipe = cli_rpc_pipe_open_schannel(cli, - cmd_entry->pipe_idx, - pipe_default_auth_level, - lp_workgroup(), - &ntresult); + ntresult = cli_rpc_pipe_open_schannel( + cli, + cli_get_iface(cmd_entry->pipe_idx), + pipe_default_auth_level, + lp_workgroup(), + &cmd_entry->rpc_pipe); break; default: DEBUG(0, ("Could not initialise %s. Invalid auth type %u\n", |