From: Joseph Sutton Date: Mon, 7 Aug 2023 04:47:47 +0000 (+1200) Subject: s3:rpc_client: Add missing newlines to logging messages X-Git-Tag: tevent-0.16.0~1135 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=687a0f016fc776dcd0641cd3793d761b81641b20;p=thirdparty%2Fsamba.git s3:rpc_client: Add missing newlines to logging messages Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- diff --git a/source3/rpc_client/cli_mdssvc.c b/source3/rpc_client/cli_mdssvc.c index 839cd62ce86..93e032faa98 100644 --- a/source3/rpc_client/cli_mdssvc.c +++ b/source3/rpc_client/cli_mdssvc.c @@ -463,7 +463,7 @@ static void mdscli_search_cmd_done(struct tevent_req *subreq) } if (*uint64p != 0) { - DBG_DEBUG("Unexpected mds result: 0x%" PRIx64, *uint64p); + DBG_DEBUG("Unexpected mds result: 0x%" PRIx64 "\n", *uint64p); tevent_req_nterror(req, NT_STATUS_INTERNAL_ERROR); return; } diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index 2606ce8321d..569d5f8efbb 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -1662,7 +1662,7 @@ static bool check_bind_response(const struct dcerpc_bind_ack *r, bool equal; if (r->secondary_address_size == 0) { - DEBUG(4,("Ignoring length check -- ASU bug (server didn't fill in the pipe name correctly)")); + DEBUG(4,("Ignoring length check -- ASU bug (server didn't fill in the pipe name correctly)\n")); } if (r->num_results < 1 || !r->ctx_list) { diff --git a/source3/rpc_client/rpc_transport_np.c b/source3/rpc_client/rpc_transport_np.c index fbe9a35aa3d..21266c37106 100644 --- a/source3/rpc_client/rpc_transport_np.c +++ b/source3/rpc_client/rpc_transport_np.c @@ -143,7 +143,7 @@ static void rpc_transport_np_init_pipe_open(struct tevent_req *subreq) rpc_transport_np_init_pipe_open_retry, req); if (tevent_req_nomem(te, req)) { DEBUG(2, ("Failed to create asynchronous " - "tevent_timer")); + "tevent_timer\n")); } return; }