mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
Prevent gcc warning.
This commit is contained in:
parent
c765213aaa
commit
13d40e33a4
@ -465,8 +465,12 @@ void ares__send_query(ares_channel channel, struct query *query, time_t now)
|
|||||||
|
|
||||||
static int open_tcp_socket(ares_channel channel, struct server_state *server)
|
static int open_tcp_socket(ares_channel channel, struct server_state *server)
|
||||||
{
|
{
|
||||||
ares_socket_t s;
|
#if defined(WIN32)
|
||||||
|
u_long flags;
|
||||||
|
#else
|
||||||
int flags;
|
int flags;
|
||||||
|
#endif
|
||||||
|
ares_socket_t s;
|
||||||
struct sockaddr_in sockin;
|
struct sockaddr_in sockin;
|
||||||
|
|
||||||
/* Acquire a socket. */
|
/* Acquire a socket. */
|
||||||
|
Loading…
Reference in New Issue
Block a user