From fcc39b3f4f2f8d04d3fab09db048b4f3dc1e97d5 Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Wed, 1 Dec 1999 22:06:53 +0000 Subject: more cli_session_setup() calls. what the heck are these doing??? they should all be replaced with cli_establish_connection(). created cli_use_wait_keyboard() which waits on multiple cli_states and swallows session keepalives. --- source/libsmb/passchange.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/libsmb/passchange.c') diff --git a/source/libsmb/passchange.c b/source/libsmb/passchange.c index 4cca1927fa0..b5552d4cea1 100644 --- a/source/libsmb/passchange.c +++ b/source/libsmb/passchange.c @@ -75,7 +75,7 @@ BOOL remote_password_change(const char *remote_machine, const char *user_name, * Thanks to for this fix. */ - if (!cli_session_setup(&cli, "", "", 0, "", 0, "")) { + if (!cli_session_setup(&cli, global_myname, "", "", 0, "", 0, "")) { slprintf(err_str, err_str_len-1, "machine %s rejected the session setup. Error was : %s.\n", remote_machine, cli_errstr(&cli) ); cli_shutdown(&cli); -- cgit