summaryrefslogtreecommitdiff
path: root/source4/param
diff options
context:
space:
mode:
authorJoseph Sutton <josephsutton@catalyst.net.nz>2023-08-07 16:54:03 +1200
committerAndrew Bartlett <abartlet@samba.org>2023-08-08 04:39:38 +0000
commit36bbfe62fa79a88d871d1a8049c048494cc1e493 (patch)
treeb4a027054d001cc84829e52cb611e393dcbc8735 /source4/param
parentc4d055ded21900290a1509523072c5705f444b38 (diff)
downloadsamba-36bbfe62fa79a88d871d1a8049c048494cc1e493.tar.gz
samba-36bbfe62fa79a88d871d1a8049c048494cc1e493.tar.bz2
samba-36bbfe62fa79a88d871d1a8049c048494cc1e493.zip
s4:param: Add missing newlines to logging messages
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/param')
-rw-r--r--source4/param/provision.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/param/provision.c b/source4/param/provision.c
index d6d120647e6..9048f1adb65 100644
--- a/source4/param/provision.c
+++ b/source4/param/provision.c
@@ -290,7 +290,7 @@ NTSTATUS provision_bare(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx,
/* FIXME paths */
py_lp_ctx = PyObject_GetAttrString(py_result, "lp");
if (py_lp_ctx == NULL) {
- DEBUG(0, ("Missing 'lp' attribute"));
+ DEBUG(0, ("Missing 'lp' attribute\n"));
status = NT_STATUS_UNSUCCESSFUL;
goto out;
}
@@ -298,7 +298,7 @@ NTSTATUS provision_bare(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx,
samdb = pyldb_Ldb_AsLdbContext(PyObject_GetAttrString(py_result, "samdb"));
if (samdb == NULL) {
- DEBUG(0, ("Missing 'samdb' attribute"));
+ DEBUG(0, ("Missing 'samdb' attribute\n"));
status = NT_STATUS_UNSUCCESSFUL;
goto out;
}