mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
s3:rpc_client: Add missing newlines to logging messages
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
cd3d9aa25d
commit
687a0f016f
@ -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;
|
||||
}
|
||||
|
@ -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) {
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user