diff options
Diffstat (limited to 'ares/ares_getsock.c')
-rw-r--r-- | ares/ares_getsock.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ares/ares_getsock.c b/ares/ares_getsock.c index 3c52a8367..55f4c9dda 100644 --- a/ares/ares_getsock.c +++ b/ares/ares_getsock.c @@ -28,7 +28,6 @@ int ares_getsock(ares_channel channel, int numsocks) /* size of the 'socks' array */ { struct server_state *server; - ares_socket_t nfds; int i; int sockindex=0; int bitmap = 0; @@ -40,7 +39,6 @@ int ares_getsock(ares_channel channel, if (!channel->queries) return 0; - nfds = 0; for (i = 0; i < channel->nservers; i++) { server = &channel->servers[i]; @@ -67,5 +65,5 @@ int ares_getsock(ares_channel channel, } } - return (int)nfds; + return bitmap; } |