mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +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,
|
&rdata,
|
||||||
&state->reply_pdu);
|
&state->reply_pdu);
|
||||||
|
|
||||||
DEBUG(10,("rpc_api_pipe: got frag len of %u at offset %u: %s\n",
|
DBG_DEBUG("got frag len of %zu at offset %zu: %s\n",
|
||||||
(unsigned)state->incoming_frag.length,
|
state->incoming_frag.length,
|
||||||
(unsigned)state->reply_pdu_offset,
|
state->reply_pdu_offset,
|
||||||
nt_errstr(status)));
|
nt_errstr(status));
|
||||||
|
|
||||||
if (state->pkt->ptype != DCERPC_PKT_FAULT && !NT_STATUS_IS_OK(status)) {
|
if (state->pkt->ptype != DCERPC_PKT_FAULT && !NT_STATUS_IS_OK(status)) {
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user