diff options
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 |