From: Volker Lendecke Date: Tue, 21 Aug 2018 19:11:43 +0000 (+0200) Subject: dsdb: Fix a typo X-Git-Tag: tdb-1.3.17~2097 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=781faca0cb9b11a048c843e35ee98c82b912e05b;p=thirdparty%2Fsamba.git dsdb: Fix a typo Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source4/dsdb/repl/replicated_objects.c b/source4/dsdb/repl/replicated_objects.c index fd7491d477f..fd567e9395c 100644 --- a/source4/dsdb/repl/replicated_objects.c +++ b/source4/dsdb/repl/replicated_objects.c @@ -607,8 +607,9 @@ WERROR dsdb_convert_object_ex(struct ldb_context *ldb, } } else { if (!(instanceType & INSTANCE_TYPE_WRITE)) { - DEBUG(0, ("Refusing to replicate %s from a read-only repilca into a read-write replica!\n", - ldb_dn_get_linearized(msg->dn))); + DBG_ERR("Refusing to replicate %s from a read-only " + "replica into a read-write replica!\n", + ldb_dn_get_linearized(msg->dn)); return WERR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA; } }