From 734d14b54834a4d03e67bcaece4f4e3cf1d10925 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 7 Dec 2012 12:56:21 +0000 Subject: s4:dsdb/descriptor: fix replication of NC heads The sub NC heads maybe replicated with the parent partition, if we don't need to recalculate the nTSecurityDescriptor attribute in that case, the replication of the of the sub partition should handle that. This fixes error messages like this: descriptor_sd_propagation_recursive: DC=ForestDnsZones,DC=s40dom,DC=base not found under DC=s40dom,DC=base Signed-off-by: Stefan Metzmacher Reviewed-by: Michael Adam --- source4/dsdb/samdb/ldb_modules/descriptor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/dsdb/samdb') diff --git a/source4/dsdb/samdb/ldb_modules/descriptor.c b/source4/dsdb/samdb/ldb_modules/descriptor.c index 95204b3c5c..192c745e25 100644 --- a/source4/dsdb/samdb/ldb_modules/descriptor.c +++ b/source4/dsdb/samdb/ldb_modules/descriptor.c @@ -1192,12 +1192,12 @@ static int descriptor_sd_propagation_recursive(struct ldb_module *module, msg); if (msg == NULL) { - ldb_debug_set(ldb, LDB_DEBUG_FATAL, + ldb_debug(ldb, LDB_DEBUG_WARNING, "descriptor_sd_propagation_recursive: " "%s not found under %s", ldb_dn_get_linearized(c->dn), ldb_dn_get_linearized(change->dn)); - return LDB_ERR_OPERATIONS_ERROR; + continue; } msg->elements = (struct ldb_message_element *)c; -- cgit