Prevent gcc warning.

This commit is contained in:
Gisle Vanem 2005-03-13 09:21:54 +00:00
parent c765213aaa
commit 13d40e33a4
1 changed files with 5 additions and 1 deletions

View File

@ -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)
{
ares_socket_t s;
#if defined(WIN32)
u_long flags;
#else
int flags;
#endif
ares_socket_t s;
struct sockaddr_in sockin;
/* Acquire a socket. */