summaryrefslogtreecommitdiff
path: root/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
commitb7c7bab713e3bfba6626050806c4f4584207be6d (patch)
tree187cb4e2b9cc48c6588a38cfb3b8a6974f994920 /ares_strerror.c
parentc03c7251c9822de3989513a7b927550f6d7bb757 (diff)
downloadc-ares-b7c7bab713e3bfba6626050806c4f4584207be6d.tar.gz
c-ares-b7c7bab713e3bfba6626050806c4f4584207be6d.tar.bz2
c-ares-b7c7bab713e3bfba6626050806c4f4584207be6d.zip
Introduction of ares_library_init() and ares_library_cleanup()
Diffstat (limited to 'ares_strerror.c')
-rw-r--r--ares_strerror.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ares_strerror.c b/ares_strerror.c
index ce2edb1..4a2f453 100644
--- a/ares_strerror.c
+++ b/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)))