summaryrefslogtreecommitdiff
path: root/source4/dsdb/repl
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-09-28 09:26:51 +1000
committerAndrew Tridgell <tridge@samba.org>2011-10-04 15:08:56 +1100
commitdf3cc35f7486c425990abccc4d3dfa431e1fa81b (patch)
tree2166fff39fb136e3fe72417ed6a93407de0c2abc /source4/dsdb/repl
parent004f8c6e976cc2b654e13e630c2fb357e82d8175 (diff)
downloadsamba-df3cc35f7486c425990abccc4d3dfa431e1fa81b.tar.gz
samba-df3cc35f7486c425990abccc4d3dfa431e1fa81b.tar.bz2
samba-df3cc35f7486c425990abccc4d3dfa431e1fa81b.zip
s4-repl: fixed formatting of some debug messages
Diffstat (limited to 'source4/dsdb/repl')
-rw-r--r--source4/dsdb/repl/drepl_ridalloc.c10
1 files changed, 5 insertions, 5 deletions
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;