s4:operational LDB module - cosmetic - reorder an attribute list
authorMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>
Sat, 12 Dec 2009 16:59:05 +0000 (17:59 +0100)
committerMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>
Sat, 12 Dec 2009 16:59:05 +0000 (17:59 +0100)
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

index aef9598625296540267235c67bbabe49ed19f195..0ea4b798b46356d96209e326aa51d8d6f299d204 100644 (file)
@@ -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 }
 };