]> granicus.if.org Git - curl/commitdiff
in debug messages also show error description
authorYang Tse <yangsita@gmail.com>
Wed, 14 Feb 2007 14:11:47 +0000 (14:11 +0000)
committerYang Tse <yangsita@gmail.com>
Wed, 14 Feb 2007 14:11:47 +0000 (14:11 +0000)
ares/ares_init.c

index 5cbb49f03aa89003e785a9cfbe8e0583a44d4796..1ca835e6d887dc2d0e33b8a867a13aab0e9e1946 100644 (file)
@@ -640,8 +640,9 @@ DhcpNameServer
         status = ARES_EOF;
         break;
       default:
+        DEBUGF(fprintf(stderr, "fopen() failed with error: %d %s\n",
+                       errno, strerror(errno)));
         DEBUGF(fprintf(stderr, "Error opening file: %s\n", PATH_RESOLV_CONF));
-        DEBUGF(fprintf(stderr, "fopen() failed with error: %d\n", errno));
         status = ARES_EFILE;
       }
     }
@@ -663,8 +664,9 @@ DhcpNameServer
           status = ARES_EOF;
           break;
         default:
+          DEBUGF(fprintf(stderr, "fopen() failed with error: %d %s\n",
+                         errno, strerror(errno)));
           DEBUGF(fprintf(stderr, "Error opening file: %s\n", "/etc/nsswitch.conf"));
-          DEBUGF(fprintf(stderr, "fopen() failed with error: %d\n", errno));
           status = ARES_EFILE;
         }
       }
@@ -687,8 +689,9 @@ DhcpNameServer
           status = ARES_EOF;
           break;
         default:
+          DEBUGF(fprintf(stderr, "fopen() failed with error: %d %s\n"
+                         errno, strerror(errno)));
           DEBUGF(fprintf(stderr, "Error opening file: %s\n", "/etc/host.conf"));
-          DEBUGF(fprintf(stderr, "fopen() failed with error: %d\n", errno));
           status = ARES_EFILE;
         }
       }
@@ -711,8 +714,9 @@ DhcpNameServer
           status = ARES_EOF;
           break;
         default:
+          DEBUGF(fprintf(stderr, "fopen() failed with error: %d %s\n",
+                         errno, strerror(errno)));
           DEBUGF(fprintf(stderr, "Error opening file: %s\n", "/etc/svc.conf"));
-          DEBUGF(fprintf(stderr, "fopen() failed with error: %d\n", errno));
           status = ARES_EFILE;
         }
       }