diff options
Diffstat (limited to 'ares')
-rw-r--r-- | ares/ares_process.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ares/ares_process.c b/ares/ares_process.c index 4ff918e22..9a05f9785 100644 --- a/ares/ares_process.c +++ b/ares/ares_process.c @@ -815,13 +815,13 @@ static int configure_socket(int s, ares_channel channel) /* Set the socket's send and receive buffer sizes. */ if ((channel->socket_send_buffer_size > 0) && setsockopt(s, SOL_SOCKET, SO_SNDBUF, - (const void*)&channel->socket_send_buffer_size, + (void *)&channel->socket_send_buffer_size, sizeof(channel->socket_send_buffer_size)) == -1) return -1; if ((channel->socket_receive_buffer_size > 0) && setsockopt(s, SOL_SOCKET, SO_RCVBUF, - (const void*)&channel->socket_receive_buffer_size, + (void *)&channel->socket_receive_buffer_size, sizeof(channel->socket_receive_buffer_size)) == -1) return -1; @@ -854,7 +854,7 @@ static int open_tcp_socket(ares_channel channel, struct server_state *server) */ opt = 1; if (setsockopt(s, IPPROTO_TCP, TCP_NODELAY, - (const void*)&opt, sizeof(opt)) == -1) + (void *)&opt, sizeof(opt)) == -1) { close(s); return -1; |