From b89a0439b3e38b6da739119d904d25901f34a8f8 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 2 Jan 2012 12:51:06 +1100 Subject: s3-librpc Rename and rework cli_rpc_pipe_open_ntlmssp() to be generic This also includes renaming the helper function rpccli_ntlmssp_bind_data, and allows this function to operate on any gensec-supplied auth type. Andrew Bartlett Signed-off-by: Stefan Metzmacher --- source3/libsmb/passchange.c | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'source3/libsmb/passchange.c') diff --git a/source3/libsmb/passchange.c b/source3/libsmb/passchange.c index 2f6ff51632..684ffd91a1 100644 --- a/source3/libsmb/passchange.c +++ b/source3/libsmb/passchange.c @@ -148,13 +148,15 @@ 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) { - result = cli_rpc_pipe_open_ntlmssp(cli, - &ndr_table_samr.syntax_id, - NCACN_NP, - DCERPC_AUTH_LEVEL_PRIVACY, - domain, user, - old_passwd, - &pipe_hnd); + result = cli_rpc_pipe_open_generic_auth(cli, + &ndr_table_samr.syntax_id, + NCACN_NP, + DCERPC_AUTH_TYPE_NTLMSSP, + DCERPC_AUTH_LEVEL_PRIVACY, + remote_machine, + domain, user, + old_passwd, + &pipe_hnd); } else { /* * If the user password must be changed the ntlmssp bind will -- cgit