From df3cc35f7486c425990abccc4d3dfa431e1fa81b Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 28 Sep 2011 09:26:51 +1000 Subject: s4-repl: fixed formatting of some debug messages --- source4/dsdb/repl/drepl_ridalloc.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source4') diff --git a/source4/dsdb/repl/drepl_ridalloc.c b/source4/dsdb/repl/drepl_ridalloc.c index 53b56b63d2..6dcd9efd8a 100644 --- a/source4/dsdb/repl/drepl_ridalloc.c +++ b/source4/dsdb/repl/drepl_ridalloc.c @@ -103,7 +103,7 @@ static int drepl_ridalloc_pool_exhausted(struct ldb_context *ldb, ret = samdb_reference_dn(ldb, tmp_ctx, server_dn, "serverReference", &machine_dn); if (ret != LDB_SUCCESS) { - DEBUG(0,(__location__ ": Failed to find serverReference in %s - %s", + DEBUG(0,(__location__ ": Failed to find serverReference in %s - %s\n", ldb_dn_get_linearized(server_dn), ldb_errstring(ldb))); talloc_free(tmp_ctx); return ret; @@ -117,7 +117,7 @@ static int drepl_ridalloc_pool_exhausted(struct ldb_context *ldb, return LDB_SUCCESS; } if (ret != LDB_SUCCESS) { - DEBUG(0,(__location__ ": Failed to find rIDSetReferences in %s - %s", + DEBUG(0,(__location__ ": Failed to find rIDSetReferences in %s - %s\n", ldb_dn_get_linearized(machine_dn), ldb_errstring(ldb))); talloc_free(tmp_ctx); return ret; @@ -125,7 +125,7 @@ static int drepl_ridalloc_pool_exhausted(struct ldb_context *ldb, ret = ldb_search(ldb, tmp_ctx, &res, rid_set_dn, LDB_SCOPE_BASE, attrs, NULL); if (ret != LDB_SUCCESS) { - DEBUG(0,(__location__ ": Failed to load RID Set attrs from %s - %s", + DEBUG(0,(__location__ ": Failed to load RID Set attrs from %s - %s\n", ldb_dn_get_linearized(rid_set_dn), ldb_errstring(ldb))); talloc_free(tmp_ctx); return ret; @@ -194,7 +194,7 @@ WERROR dreplsrv_ridalloc_check_rid_pool(struct dreplsrv_service *service) /* work out who is the RID Manager */ ret = samdb_rid_manager_dn(ldb, tmp_ctx, &rid_manager_dn); if (ret != LDB_SUCCESS) { - DEBUG(0, (__location__ ": Failed to find RID Manager object - %s", ldb_errstring(ldb))); + DEBUG(0, (__location__ ": Failed to find RID Manager object - %s\n", ldb_errstring(ldb))); talloc_free(tmp_ctx); return WERR_DS_DRA_INTERNAL_ERROR; } @@ -202,7 +202,7 @@ WERROR dreplsrv_ridalloc_check_rid_pool(struct dreplsrv_service *service) /* find the DN of the RID Manager */ ret = samdb_reference_dn(ldb, tmp_ctx, rid_manager_dn, "fSMORoleOwner", &fsmo_role_dn); if (ret != LDB_SUCCESS) { - DEBUG(0,(__location__ ": Failed to find fSMORoleOwner in RID Manager object - %s", + DEBUG(0,(__location__ ": Failed to find fSMORoleOwner in RID Manager object - %s\n", ldb_errstring(ldb))); talloc_free(tmp_ctx); return WERR_DS_DRA_INTERNAL_ERROR; -- cgit