diff options
author | Matthieu Patou <mat@matws.net> | 2012-05-30 10:41:56 -0700 |
---|---|---|
committer | Matthieu Patou <mat@matws.net> | 2012-06-22 23:22:03 -0700 |
commit | f2deb05f77e21c5c9106dac32202d0b92eca3f96 (patch) | |
tree | e1a80e6a56577373be6fdeb79e9ebd71e606379a | |
parent | 283af3857c13501b91484d86127f82d3cbfa936a (diff) | |
download | samba-f2deb05f77e21c5c9106dac32202d0b92eca3f96.tar.gz samba-f2deb05f77e21c5c9106dac32202d0b92eca3f96.tar.bz2 samba-f2deb05f77e21c5c9106dac32202d0b92eca3f96.zip |
s4-dsdb: move schema_load at the top of module stack
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/samba_dsdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/samba_dsdb.c b/source4/dsdb/samdb/ldb_modules/samba_dsdb.c index d58b584b77..361059f0ee 100644 --- a/source4/dsdb/samdb/ldb_modules/samba_dsdb.c +++ b/source4/dsdb/samdb/ldb_modules/samba_dsdb.c @@ -164,6 +164,7 @@ static int samba_dsdb_init(struct ldb_module *module) */ static const char *modules_list[] = {"resolve_oids", "rootdse", + "schema_load", "lazy_commit", "dirsync", "paged_results", @@ -180,7 +181,6 @@ static int samba_dsdb_init(struct ldb_module *module) "samldb", "password_hash", "operational", - "schema_load", "instancetype", "objectclass_attrs", NULL }; |