diff options
author | Nadezhda Ivanova <nivanova@samba.org> | 2010-12-06 13:53:06 +0200 |
---|---|---|
committer | Nadezhda Ivanova <nivanova@samba.org> | 2010-12-06 14:00:38 +0200 |
commit | 3f1b153132e2ca6ffcd9ca897f8d67eb4fdcf9b9 (patch) | |
tree | 422620965d618364a54256fe43639ccb4544eda9 | |
parent | bd3e5804a41fdfc8a43bebd95c53e4f0ff1d7a10 (diff) | |
download | samba-3f1b153132e2ca6ffcd9ca897f8d67eb4fdcf9b9.tar.gz |
s4-acl: Moved aclread module below descriptor and acl.
The aclread needs to be belod descriptor, as it needs to have the full nTsecurityDescriptor to make the
checks, and the descriptor module may filter out parts of it if SD_FLAGS_CONTROL is provided.
-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 f07d03f9a79..f6c8e3ccf4f 100644 --- a/source4/dsdb/samdb/ldb_modules/samba_dsdb.c +++ b/source4/dsdb/samdb/ldb_modules/samba_dsdb.c @@ -162,7 +162,6 @@ static int samba_dsdb_init(struct ldb_module *module) */ static const char *modules_list[] = {"resolve_oids", "rootdse", - "aclread", "lazy_commit", "paged_results", "ranged_results", @@ -174,6 +173,7 @@ static int samba_dsdb_init(struct ldb_module *module) "objectclass", "descriptor", "acl", + "aclread", "samldb", "password_hash", "operational", |