1
0
mirror of https://github.com/samba-team/samba.git synced 2025-06-03 17:05:54 +03:00

s4:rpc_server/service_rpc.c - fix warnings on Solaris

This commit is contained in:
Matthias Dieter Wallnöfer 2010-06-20 21:46:53 +02:00
parent c972e6ec23
commit 0bf26edf6c

View File

@ -90,7 +90,7 @@ static void dcesrv_sock_report_output_data(struct dcesrv_connection *dce_conn)
substate->call = call;
}
substate->iov.iov_base = rep->blob.data;
substate->iov.iov_base = (void *) rep->blob.data;
substate->iov.iov_len = rep->blob.length;
subreq = tstream_writev_queue_send(substate,
@ -231,7 +231,7 @@ static int dcerpc_read_ncacn_packet_next_vector(struct tstream_context *stream,
return -1;
}
vector[0].iov_base = state->buffer.data + ofs;
vector[0].iov_base = (void *) (state->buffer.data + ofs);
vector[0].iov_len = state->buffer.length - ofs;
*_vector = vector;