From 1788abba14f6f54bf0bd1ef7a71ed354c3930d00 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Sat, 12 Dec 2009 17:59:05 +0100 Subject: 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). --- source4/dsdb/samdb/ldb_modules/operational.c | 16 ++++++++-------- 1 file 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 } }; -- cgit