mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
rpc_client: Avoid casts
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
parent
56328aef8e
commit
dc4371f7d6
@ -958,10 +958,10 @@ static void rpc_api_pipe_got_pdu(struct tevent_req *subreq)
|
||||
&rdata,
|
||||
&state->reply_pdu);
|
||||
|
||||
DEBUG(10,("rpc_api_pipe: got frag len of %u at offset %u: %s\n",
|
||||
(unsigned)state->incoming_frag.length,
|
||||
(unsigned)state->reply_pdu_offset,
|
||||
nt_errstr(status)));
|
||||
DBG_DEBUG("got frag len of %zu at offset %zu: %s\n",
|
||||
state->incoming_frag.length,
|
||||
state->reply_pdu_offset,
|
||||
nt_errstr(status));
|
||||
|
||||
if (state->pkt->ptype != DCERPC_PKT_FAULT && !NT_STATUS_IS_OK(status)) {
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user