summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2009-12-12 17:59:05 +0100
committerMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2009-12-12 17:59:05 +0100
commit1788abba14f6f54bf0bd1ef7a71ed354c3930d00 (patch)
tree3ebe6b6c891fa1a8a5434b2d8c7b99a218fd315e
parent24a398b5b4b3693129aa8c060912a82fd0383f9f (diff)
downloadsamba-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).
-rw-r--r--source4/dsdb/samdb/ldb_modules/operational.c16
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 }
};