init_by_resolv_conf: fix compiler warnings
authorDaniel Stenberg <daniel@haxx.se>
Mon, 27 Dec 2010 12:18:54 +0000 (13:18 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 27 Dec 2010 12:18:54 +0000 (13:18 +0100)
The code received the return codes in the 'status' variable without
using it. Instead we just ignore those particular errors.

ares_init.c

index a10f7f3..d2f4a72 100644 (file)
@@ -899,7 +899,8 @@ DhcpNameServer
         while ((status = ares__read_line(fp, &line, &linesize)) == ARES_SUCCESS)
         {
           if ((p = try_config(line, "hosts:", '\0')) && !channel->lookups)
-            status = config_lookup(channel, p, "dns", "files");
+            /* ignore errors */
+            (void)config_lookup(channel, p, "dns", "files");
         }
         fclose(fp);
       }
@@ -926,7 +927,8 @@ DhcpNameServer
         while ((status = ares__read_line(fp, &line, &linesize)) == ARES_SUCCESS)
         {
           if ((p = try_config(line, "order", '\0')) && !channel->lookups)
-            status = config_lookup(channel, p, "bind", "hosts");
+            /* ignore errors */
+            (void)config_lookup(channel, p, "bind", "hosts");
         }
         fclose(fp);
       }
@@ -953,7 +955,8 @@ DhcpNameServer
         while ((status = ares__read_line(fp, &line, &linesize)) == ARES_SUCCESS)
         {
           if ((p = try_config(line, "hosts=", '\0')) && !channel->lookups)
-            status = config_lookup(channel, p, "bind", "local");
+            /* ignore errors */
+            (void)config_lookup(channel, p, "bind", "local");
         }
         fclose(fp);
       }