summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2004-07-24 23:57:07 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:52:15 -0500
commit554a9132872187077a9c00abb18b9d809c59b7f1 (patch)
tree4029599e75c4168c2ceb79436ad02521068a8e2b /source
parent11c6ca1c3c9d3b400f4cebcbf232899bcf4b613f (diff)
downloadsamba-554a9132872187077a9c00abb18b9d809c59b7f1.tar.gz
samba-554a9132872187077a9c00abb18b9d809c59b7f1.tar.xz
samba-554a9132872187077a9c00abb18b9d809c59b7f1.zip
r1581: 'NULL' NTLMSSP is both a pain to get right, and compleatly and utterly
pointless. With a well-known session key, we may as well put the password change directly on the wire, with it's own 'crypted with old password' as the protection. This should fix some 'long password change' issues, against Samba in particular. Andrew Bartlett
Diffstat (limited to 'source')
-rw-r--r--source/libsmb/passchange.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/libsmb/passchange.c b/source/libsmb/passchange.c
index 9f46c131fee..8bce9c86a1e 100644
--- a/source/libsmb/passchange.c
+++ b/source/libsmb/passchange.c
@@ -144,6 +144,8 @@ BOOL remote_password_change(const char *remote_machine, const char *user_name,
init_creds(&creds, "", "", NULL);
cli_init_creds(&cli, &creds);
+ cli.pipe_auth_flags = 0;
+
result = NT_STATUS_UNSUCCESSFUL;
/* OK, this is ugly, but... */