s4:repl_meta_data: add missing \n to a DEBUG message in replmd_modify_la_add()
authorStefan Metzmacher <metze@samba.org>
Fri, 12 Oct 2018 17:34:08 +0000 (19:34 +0200)
committerKarolin Seeger <kseeger@samba.org>
Mon, 5 Nov 2018 08:33:29 +0000 (09:33 +0100)
BUG: https://bugzilla.samba.org/show_bug.cgi?id=13418

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
(cherry picked from commit 70a306d0bd6806d1fd00d45e3d8cc70c73d09f79)

source4/dsdb/samdb/ldb_modules/repl_meta_data.c

index d203c5712440438b8a4a507a42c03681a9a3abd3..385c831dd7266aec08a865eb9f0c0b40d3082406 100644 (file)
@@ -2445,7 +2445,7 @@ static int replmd_modify_la_add(struct ldb_module *module,
        max_num_values = old_num_values + el->num_values;
        if (max_num_values < old_num_values) {
                DEBUG(0, ("we seem to have overflow in replmd_modify_la_add. "
-                         "old values: %u, new values: %u, sum: %u",
+                         "old values: %u, new values: %u, sum: %u\n",
                          old_num_values, el->num_values, max_num_values));
                talloc_free(tmp_ctx);
                return LDB_ERR_OPERATIONS_ERROR;