summaryrefslogtreecommitdiffstats
path: root/source/passdb
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2006-06-21 13:05:41 +0000
committerGerald Carter <jerry@samba.org>2006-06-21 13:05:41 +0000
commiteb65031a677209fbbdac79ecee6766906a80752e (patch)
tree71c40fdf38ce717b0f0f01d52fbc69f50861ab75 /source/passdb
parent71402ccf50c38ff092e7331c6817bbf975fde412 (diff)
downloadsamba-eb65031a677209fbbdac79ecee6766906a80752e.tar.gz
samba-eb65031a677209fbbdac79ecee6766906a80752e.tar.xz
samba-eb65031a677209fbbdac79ecee6766906a80752e.zip
r16438: sync up to r16433
Diffstat (limited to 'source/passdb')
-rw-r--r--source/passdb/pdb_ldap.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/source/passdb/pdb_ldap.c b/source/passdb/pdb_ldap.c
index 2a824c137f9..4a9794e1861 100644
--- a/source/passdb/pdb_ldap.c
+++ b/source/passdb/pdb_ldap.c
@@ -1796,6 +1796,19 @@ static NTSTATUS ldapsam_update_sam_account(struct pdb_methods *my_methods, struc
ldap_mods_free(mods,True);
SAFE_FREE(dn);
+ /*
+ * We need to set the backend private data to NULL here. For example
+ * setuserinfo level 25 does a pdb_update_sam_account twice on the
+ * same one, and with the explicit delete / add logic for attribute
+ * values the second time we would use the wrong "old" value which
+ * does not exist in LDAP anymore. Thus the LDAP server would refuse
+ * the update.
+ * The existing LDAPMessage is still being auto-freed by the
+ * destructor.
+ */
+ pdb_set_backend_private_data(newpwd, NULL, NULL, my_methods,
+ PDB_CHANGED);
+
if (!NT_STATUS_IS_OK(ret)) {
return ret;
}