diff options
author | Jeremy Allison <jra@samba.org> | 2004-09-21 22:16:36 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:52:45 -0500 |
commit | 0351bf8b03306246efc17e532ebe78ecdafb645d (patch) | |
tree | 38a3179b179e0b6130c2cbecbf0647b692850073 /source/passdb | |
parent | 4aa670385f81ab3d90a2c5dd8ba6e0190f947452 (diff) | |
download | samba-0351bf8b03306246efc17e532ebe78ecdafb645d.tar.gz samba-0351bf8b03306246efc17e532ebe78ecdafb645d.tar.xz samba-0351bf8b03306246efc17e532ebe78ecdafb645d.zip |
r2479: Stop attribute "modifyTimestamp" from being deleted.
Jeremy.
Diffstat (limited to 'source/passdb')
-rw-r--r-- | source/passdb/pdb_ldap.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source/passdb/pdb_ldap.c b/source/passdb/pdb_ldap.c index 35dbf4f0dc9..454aa8d8702 100644 --- a/source/passdb/pdb_ldap.c +++ b/source/passdb/pdb_ldap.c @@ -320,6 +320,11 @@ static NTSTATUS ldapsam_delete_entry(struct ldapsam_privates *ldap_state, really exist. */ for (attrib = attrs; *attrib != NULL; attrib++) { + /* Don't delete LDAP_ATTR_MOD_TIMESTAMP attribute. */ + if (strequal(*attrib, get_userattr_key2string(ldap_state->schema_ver, + LDAP_ATTR_MOD_TIMESTAMP))) { + continue; + } if (strequal(*attrib, name)) { DEBUG(10, ("ldapsam_delete_entry: deleting " "attribute %s\n", name)); |