summaryrefslogtreecommitdiff
path: root/source3/libsmb/passchange.c
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1999-12-01 22:06:53 +0000
committerLuke Leighton <lkcl@samba.org>1999-12-01 22:06:53 +0000
commita76fee73337aca00973ca744f3c41906a72e5855 (patch)
treee95371767e795740b3abb2804a1c87225d43512a /source3/libsmb/passchange.c
parentc15b95cd1ede75b38d3a2c5192f2d1fd2a310c9a (diff)
downloadsamba-a76fee73337aca00973ca744f3c41906a72e5855.tar.gz
samba-a76fee73337aca00973ca744f3c41906a72e5855.tar.bz2
samba-a76fee73337aca00973ca744f3c41906a72e5855.zip
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. (This used to be commit fcc39b3f4f2f8d04d3fab09db048b4f3dc1e97d5)
Diffstat (limited to 'source3/libsmb/passchange.c')
-rw-r--r--source3/libsmb/passchange.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/passchange.c b/source3/libsmb/passchange.c
index 4cca1927fa..b5552d4cea 100644
--- a/source3/libsmb/passchange.c
+++ b/source3/libsmb/passchange.c
@@ -75,7 +75,7 @@ BOOL remote_password_change(const char *remote_machine, const char *user_name,
* Thanks to <Nicholas.S.Jenkins@cdc.com> 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);