summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarming Sam <garming@catalyst.net.nz>2016-08-16 10:53:39 +1200
committerStefan Metzmacher <metze@samba.org>2016-08-29 07:35:24 +0200
commitd107915197c8465b7a5455b5fa0568e696f803e0 (patch)
tree89f1e1334f2facf21a97ec20bfa9461a3cf2616f
parent7d24cd2d215c3ed2c14ae017d37d8133cc1017ff (diff)
downloadsamba-d107915197c8465b7a5455b5fa0568e696f803e0.tar.gz
replicated_objects: Add missing newline for debug
Signed-off-by: Garming Sam <garming@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> BUG: https://bugzilla.samba.org/show_bug.cgi?id=12187 (cherry picked from commit 216c0319c744c39848ae5da7d15dccb6769ea20a)
-rw-r--r--source4/dsdb/repl/replicated_objects.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/dsdb/repl/replicated_objects.c b/source4/dsdb/repl/replicated_objects.c
index 89d288af685..46b0b666ad4 100644
--- a/source4/dsdb/repl/replicated_objects.c
+++ b/source4/dsdb/repl/replicated_objects.c
@@ -306,7 +306,7 @@ WERROR dsdb_repl_make_working_schema(struct ldb_context *ldb,
werr = dsdb_schema_pfm_from_drsuapi_pfm(mapping_ctr, true,
working_schema, &pfm_remote, NULL);
if (!W_ERROR_IS_OK(werr)) {
- DEBUG(0,(__location__ ": Failed to decode remote prefixMap: %s",
+ DEBUG(0,(__location__ ": Failed to decode remote prefixMap: %s\n",
win_errstr(werr)));
talloc_free(working_schema);
return werr;
@@ -667,7 +667,7 @@ WERROR dsdb_replicated_objects_convert(struct ldb_context *ldb,
status = dsdb_schema_pfm_from_drsuapi_pfm(mapping_ctr, true,
out, &pfm_remote, NULL);
if (!W_ERROR_IS_OK(status)) {
- DEBUG(0,(__location__ ": Failed to decode remote prefixMap: %s",
+ DEBUG(0,(__location__ ": Failed to decode remote prefixMap: %s\n",
win_errstr(status)));
talloc_free(out);
return status;