From: Björn Baumbach Date: Fri, 31 Aug 2018 14:12:34 +0000 (+0200) Subject: dns update: add missing newline in error debug message X-Git-Tag: tdb-1.3.17~1328 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b773be3371ef9014511b58951986f92f59bd6975;p=thirdparty%2Fsamba.git dns update: add missing newline in error debug message Signed-off-by: Björn Baumbach Reviewed-by: Volker Lendecke --- diff --git a/source4/dsdb/dns/dns_update.c b/source4/dsdb/dns/dns_update.c index 9385b35a43e..de873376201 100644 --- a/source4/dsdb/dns/dns_update.c +++ b/source4/dsdb/dns/dns_update.c @@ -124,7 +124,8 @@ static void dnsupdate_rebuild(struct dnsupdate_service *service) 0, "(&(objectclass=NTDSDSA)(!(msDS-isRODC=TRUE)))"); if (ret != LDB_SUCCESS) { - DEBUG(0,(__location__ ": Unable to find DCs list - %s", ldb_errstring(service->samdb))); + DBG_ERR("Unable to find DCs list - %s\n", + ldb_errstring(service->samdb)); talloc_free(tmp_ctx); return; }