ares_set_servers_csv: remove unused variables
authorDaniel Stenberg <daniel@haxx.se>
Mon, 27 Dec 2010 12:19:37 +0000 (13:19 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 27 Dec 2010 12:19:37 +0000 (13:19 +0100)
ares_options.c

index 70280526869500a55b55bf4e211d5d36fba4d7e9..3979efee8c217088e5e0f992d47c3012ab694f09 100644 (file)
@@ -139,8 +139,6 @@ int ares_set_servers_csv(ares_channel channel,
   char* csv = NULL;
   char* ptr;
   char* start_host;
-  long port;
-  bool found_port;
   int rv = ARES_SUCCESS;
   struct ares_addr_node *servers = NULL;
   struct ares_addr_node *last = NULL;
@@ -165,7 +163,6 @@ int ares_set_servers_csv(ares_channel channel,
   }
 
   start_host = csv;
-  found_port = false;
   for (ptr = csv; *ptr; ptr++) {
     if (*ptr == ',') {
       char* pp = ptr - 1;
@@ -186,9 +183,8 @@ int ares_set_servers_csv(ares_channel channel,
         pp--;
       }
       if ((pp != start_host) && ((pp + 1) < ptr)) {
-        /* Found it. */
-        found_port = true;
-        port = strtol(pp + 1, NULL, 10);
+        /* Found it. Parse over the port number */
+        (void)strtol(pp + 1, NULL, 10);
         *pp = 0; /* null terminate host */
       }
       /* resolve host, try ipv4 first, rslt is in network byte order */
@@ -233,7 +229,6 @@ int ares_set_servers_csv(ares_channel channel,
       }
 
       /* Set up for next one */
-      found_port = false;
       start_host = ptr + 1;
     }
   }