diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-11-20 15:19:35 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-11-20 15:19:35 +1100 |
commit | 92eff41ca52858124982b7db5e30c5321a16019d (patch) | |
tree | 5e6cd4c0be9099f8b42aecb722db8a44dfe4128b /source4/dsdb | |
parent | 18cacc506e24e9017513501cac2ff9b5ca304bd5 (diff) | |
download | samba-92eff41ca52858124982b7db5e30c5321a16019d.tar.gz samba-92eff41ca52858124982b7db5e30c5321a16019d.tar.bz2 samba-92eff41ca52858124982b7db5e30c5321a16019d.zip |
s4-dsdb: some more attribuutes that we should only give if asked for
Diffstat (limited to 'source4/dsdb')
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/operational.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/operational.c b/source4/dsdb/samdb/ldb_modules/operational.c index 23d1a9fe7f..4e27157bb9 100644 --- a/source4/dsdb/samdb/ldb_modules/operational.c +++ b/source4/dsdb/samdb/ldb_modules/operational.c @@ -185,7 +185,12 @@ static const struct { enum op_remove op; } operational_remove[] = { { "ntSecurityDescriptor", OPERATIONAL_REMOVE_UNASKED }, - { "parentGUID", OPERATIONAL_REMOVE_ALWAYS } + { "parentGUID", OPERATIONAL_REMOVE_ALWAYS }, + { "replPropertyMetaData", OPERATIONAL_REMOVE_UNASKED }, + { "ntPwdHistory", OPERATIONAL_REMOVE_UNASKED }, + { "lmPwdHistory", OPERATIONAL_REMOVE_UNASKED }, + { "unicodePwd", OPERATIONAL_REMOVE_UNASKED }, + { "supplementalCredentials", OPERATIONAL_REMOVE_UNASKED } }; |