diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-03-18 22:03:40 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-03-18 22:05:38 +1100 |
commit | 6de83ef6277d8506478ce5ff43d33e39541b310c (patch) | |
tree | 7c301f054f1081f0bd0b76a82935e69e9311b44e | |
parent | 0d6d068bc4f76c2816f969fcce6013e1945794d4 (diff) | |
download | samba-6de83ef6277d8506478ce5ff43d33e39541b310c.tar.gz samba-6de83ef6277d8506478ce5ff43d33e39541b310c.tar.bz2 samba-6de83ef6277d8506478ce5ff43d33e39541b310c.zip |
s4:dsdb Move rdn_name down the stack
This is done so that it can be (in future) removed when the OpenLDAP
backend is in use and the rdn_val module is used, while keeping as
similar semantics as possible between the module stacks.
Andrew Bartlett
-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 c929d65483..8f7e5407c7 100644 --- a/source4/dsdb/samdb/ldb_modules/samba_dsdb.c +++ b/source4/dsdb/samdb/ldb_modules/samba_dsdb.c @@ -175,7 +175,6 @@ static int samba_dsdb_init(struct ldb_module *module) "asq", "extended_dn_store", "extended_dn_in", - "rdn_name", "objectclass", "descriptor", "acl", @@ -186,6 +185,7 @@ static int samba_dsdb_init(struct ldb_module *module) "kludge_acl", "schema_load", "instancetype", + "rdn_name", NULL }; const char **link_modules; |