Ravi Pratap fixed ares_getsock() to actually return the proper bitmap and
authorDaniel Stenberg <daniel@haxx.se>
Thu, 3 Aug 2006 18:20:45 +0000 (18:20 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 3 Aug 2006 18:20:45 +0000 (18:20 +0000)
not always zero!

CHANGES
ares_getsock.c

diff --git a/CHANGES b/CHANGES
index 1b0569f..801d41b 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,10 @@
   Changelog for the c-ares project
 
+* August 3 2006
+
+- Ravi Pratap fixed ares_getsock() to actually return the proper bitmap and
+  not always zero!
+
 Version 1.3.1 (June 24, 2006)
 
 * July 23, 2006
index 3c52a83..55f4c9d 100644 (file)
@@ -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;
 }