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:11 +0200 |
commit | e0be03d8d5006f92ed479b84cd30ebfe510fa68a (patch) | |
tree | 4e0571cc682b35db841407eb77983a40459167bc /source3/libsmb | |
parent | 1335da2a7cc639310e5d389e8e8dbe67c4e7ca25 (diff) | |
download | samba-e0be03d8d5006f92ed479b84cd30ebfe510fa68a.tar.gz samba-e0be03d8d5006f92ed479b84cd30ebfe510fa68a.tar.bz2 samba-e0be03d8d5006f92ed479b84cd30ebfe510fa68a.zip |
Refactoring: Change calling conventions for cli_rpc_pipe_open_ntlmssp
Pass in ndr_syntax_id instead of pipe_idx, return NTSTATUS
(This used to be commit a13f0599551609394904b99e4014d580ec65c506)
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/passchange.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/libsmb/passchange.c b/source3/libsmb/passchange.c index 86c7b52160..c8a4406949 100644 --- a/source3/libsmb/passchange.c +++ b/source3/libsmb/passchange.c @@ -136,13 +136,13 @@ NTSTATUS remote_password_change(const char *remote_machine, const char *user_nam /* Try not to give the password away too easily */ if (!pass_must_change) { - pipe_hnd = cli_rpc_pipe_open_ntlmssp(cli, - PI_SAMR, - PIPE_AUTH_LEVEL_PRIVACY, - "", /* what domain... ? */ - user_name, - old_passwd, - &result); + result = cli_rpc_pipe_open_ntlmssp(cli, + &ndr_table_samr.syntax_id, + PIPE_AUTH_LEVEL_PRIVACY, + "", /* what domain... ? */ + user_name, + old_passwd, + &pipe_hnd); } else { /* * If the user password must be changed the ntlmssp bind will |