aboutsummaryrefslogtreecommitdiff
path: root/ares/ares_strerror.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2009-05-17 17:11:28 +0000
committerYang Tse <yangsita@gmail.com>2009-05-17 17:11:28 +0000
commit2d64cd55a1069ff7fc7e6d8caf5c67353f1ec55f (patch)
tree62f21bf8bc7dc95ca6aab563340065feac445b6b /ares/ares_strerror.c
parent60a6af74983d45503067b7e53b14117076a05115 (diff)
Introduction of ares_library_init() and ares_library_cleanup()
Diffstat (limited to 'ares/ares_strerror.c')
-rw-r--r--ares/ares_strerror.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ares/ares_strerror.c b/ares/ares_strerror.c
index ce2edb192..4a2f4538e 100644
--- a/ares/ares_strerror.c
+++ b/ares/ares_strerror.c
@@ -43,7 +43,11 @@ const char *ares_strerror(int code)
"Misformatted string",
"Illegal flags specified",
"Given hostname is not numeric",
- "Illegal hints flags specified"
+ "Illegal hints flags specified",
+ "Error loading iphlpapi.dll",
+ "Error loading advapi32.dll",
+ "Unknown GetNetworkParams function address",
+ "Unknown SystemFunction036 function address"
};
if(code >= 0 && code < (int)(sizeof(errtext) / sizeof(*errtext)))