diff options
Diffstat (limited to 'source4/ntp_signd/ntp_signd.c')
-rw-r--r-- | source4/ntp_signd/ntp_signd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/ntp_signd/ntp_signd.c b/source4/ntp_signd/ntp_signd.c index 6a628e491a..3110b20059 100644 --- a/source4/ntp_signd/ntp_signd.c +++ b/source4/ntp_signd/ntp_signd.c @@ -346,10 +346,10 @@ static void ntp_signd_call_loop(struct tevent_req *subreq) /* First add the length of the out buffer */ RSIVAL(call->out_hdr, 0, call->out.length); - call->out_iov[0].iov_base = call->out_hdr; + call->out_iov[0].iov_base = (char *) call->out_hdr; call->out_iov[0].iov_len = 4; - call->out_iov[1].iov_base = call->out.data; + call->out_iov[1].iov_base = (char *) call->out.data; call->out_iov[1].iov_len = call->out.length; subreq = tstream_writev_queue_send(call, |