]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3:rpc_client: Add missing newlines to logging messages
authorJoseph Sutton <josephsutton@catalyst.net.nz>
Mon, 7 Aug 2023 04:47:47 +0000 (16:47 +1200)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 8 Aug 2023 04:39:38 +0000 (04:39 +0000)
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
source3/rpc_client/cli_mdssvc.c
source3/rpc_client/cli_pipe.c
source3/rpc_client/rpc_transport_np.c

index 839cd62ce8681361f6a4e05718c23632c3a0c5ed..93e032faa987bc3376366aa1a8c82bb3cf916c51 100644 (file)
@@ -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;
        }
index 2606ce8321d715a21083d9e40fb5de7e3db5d3d3..569d5f8efbb69e129d688f3aa364b9227174e908 100644 (file)
@@ -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) {
index fbe9a35aa3d8f415d81d0884094151690336d1ac..21266c37106192749d5ee72ba283399858daad8d 100644 (file)
@@ -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;
        }