1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

r20715: set the dsdb_schema on the ldb_context

after we have created a temporary one

metze
(This used to be commit 35a88f3d39)
This commit is contained in:
Stefan Metzmacher 2007-01-12 17:26:55 +00:00 committed by Gerald (Jerry) Carter
parent e0efa2c97a
commit 936fb1c0f7

View File

@ -264,6 +264,7 @@ static NTSTATUS test_apply_schema(struct test_become_dc_state *s,
struct repsFromTo1 *s_dsa;
char *tmp_dns_name;
uint32_t i;
int ret;
s_dsa = talloc_zero(s, struct repsFromTo1);
NT_STATUS_HAVE_NO_MEMORY(s_dsa);
@ -378,6 +379,11 @@ static NTSTATUS test_apply_schema(struct test_become_dc_state *s,
}
}
ret = dsdb_set_schema(s->ldb, s->schema);
if (ret != LDB_SUCCESS) {
return NT_STATUS_FOOBAR;
}
status = dsdb_extended_replicated_objects_commit(s->ldb,
c->partition->nc.dn,
s->schema,