diff options
author | Andrew Bartlett <abartlet@samba.org> | 2009-10-12 16:44:19 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2009-10-12 16:50:49 +1100 |
commit | 1dfa2ed42361bb8d22446513a85f0523a740982c (patch) | |
tree | abc83bb42766b710a4737c72a2e49558069574fb /source4/dsdb/common | |
parent | 0bfc3023a1f2810f096ba282bc64ccb09d3cfe3e (diff) | |
download | samba-1dfa2ed42361bb8d22446513a85f0523a740982c.tar.gz samba-1dfa2ed42361bb8d22446513a85f0523a740982c.tar.bz2 samba-1dfa2ed42361bb8d22446513a85f0523a740982c.zip |
s4:provision Remove all references to samba4LocalDomain
This was a bad idea all along, as Simo said at the time. With the
full MS schema and enforcement of it, it is an even worse idea.
This fixes the provision of the member server in 'make test'
Andrew Bartlett
Diffstat (limited to 'source4/dsdb/common')
-rw-r--r-- | source4/dsdb/common/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/common/util.c b/source4/dsdb/common/util.c index 9a8b59e55d..f86a842fb4 100644 --- a/source4/dsdb/common/util.c +++ b/source4/dsdb/common/util.c @@ -1531,7 +1531,7 @@ int samdb_search_for_parent_domain(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, while ((sdn = ldb_dn_get_parent(local_ctx, sdn))) { ret = ldb_search(ldb, local_ctx, &res, sdn, LDB_SCOPE_BASE, attrs, - "(|(|(objectClass=domain)(objectClass=builtinDomain))(objectClass=samba4LocalDomain))"); + "(|(objectClass=domain)(objectClass=builtinDomain))"); if (ret == LDB_SUCCESS) { if (res->count == 1) { break; |