From 5c5d86997593fd7ed9efc0f214f2e978c13083ac Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 29 Sep 2011 17:05:38 -0700 Subject: s4-dsdb Allow repl server to start even when no master NCs are present --- source4/dsdb/repl/drepl_partitions.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'source4/dsdb/repl/drepl_partitions.c') diff --git a/source4/dsdb/repl/drepl_partitions.c b/source4/dsdb/repl/drepl_partitions.c index 934c75e776..7c5424555a 100644 --- a/source4/dsdb/repl/drepl_partitions.c +++ b/source4/dsdb/repl/drepl_partitions.c @@ -63,14 +63,8 @@ WERROR dreplsrv_load_partitions(struct dreplsrv_service *s) } el = ldb_msg_find_element(res->msgs[0], "hasMasterNCs"); - if (!el) { - DEBUG(1,("Finding hasMasterNCs element in root_res failed: %s\n", - ldb_errstring(s->samdb))); - talloc_free(tmp_ctx); - return WERR_DS_DRA_INTERNAL_ERROR; - } - for (i=0; inum_values; i++) { + for (i=0; el && inum_values; i++) { struct ldb_dn *pdn; struct dreplsrv_partition *p; -- cgit