diff options
author | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2009-12-12 17:59:05 +0100 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2009-12-12 17:59:05 +0100 |
commit | 1788abba14f6f54bf0bd1ef7a71ed354c3930d00 (patch) | |
tree | 3ebe6b6c891fa1a8a5434b2d8c7b99a218fd315e /source4/dsdb/samdb | |
parent | 24a398b5b4b3693129aa8c060912a82fd0383f9f (diff) | |
download | samba-1788abba14f6f54bf0bd1ef7a71ed354c3930d00.tar.gz samba-1788abba14f6f54bf0bd1ef7a71ed354c3930d00.tar.bz2 samba-1788abba14f6f54bf0bd1ef7a71ed354c3930d00.zip |
s4:operational LDB module - cosmetic - reorder an attribute list
This matches the default handling order in the "password_hash" module (it's nice
to have this consistent).
Diffstat (limited to 'source4/dsdb/samdb')
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/operational.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/operational.c b/source4/dsdb/samdb/ldb_modules/operational.c index aef9598625..0ea4b798b4 100644 --- a/source4/dsdb/samdb/ldb_modules/operational.c +++ b/source4/dsdb/samdb/ldb_modules/operational.c @@ -225,14 +225,14 @@ static const struct { const char *attr; enum op_remove op; } operational_remove[] = { - { "nTSecurityDescriptor", OPERATIONAL_REMOVE_UNASKED }, - { "parentGUID", OPERATIONAL_REMOVE_ALWAYS }, - { "replPropertyMetaData", OPERATIONAL_REMOVE_UNASKED }, - { "ntPwdHistory", OPERATIONAL_REMOVE_UNASKED }, - { "lmPwdHistory", OPERATIONAL_REMOVE_UNASKED }, - { "unicodePwd", OPERATIONAL_REMOVE_UNASKED }, - { "supplementalCredentials", OPERATIONAL_REMOVE_UNASKED }, - { "dBCSPwd", OPERATIONAL_REMOVE_UNASKED } + { "nTSecurityDescriptor", OPERATIONAL_REMOVE_UNASKED }, + { "parentGUID", OPERATIONAL_REMOVE_ALWAYS }, + { "replPropertyMetaData", OPERATIONAL_REMOVE_UNASKED }, + { "unicodePwd", OPERATIONAL_REMOVE_UNASKED }, + { "dBCSPwd", OPERATIONAL_REMOVE_UNASKED }, + { "ntPwdHistory", OPERATIONAL_REMOVE_UNASKED }, + { "lmPwdHistory", OPERATIONAL_REMOVE_UNASKED }, + { "supplementalCredentials", OPERATIONAL_REMOVE_UNASKED } }; |