summaryrefslogtreecommitdiff
path: root/ares_strerror.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2009-05-18 01:25:20 +0000
committerYang Tse <yangsita@gmail.com>2009-05-18 01:25:20 +0000
commitb677ff3d15f3a26b185e89f15dee45bbd125902d (patch)
treef5ae039b49af47746f2ebee4ef78e88828741699 /ares_strerror.c
parent5b17412c1f522cc40b01e7108afb0deaaee781f6 (diff)
downloadc-ares-b677ff3d15f3a26b185e89f15dee45bbd125902d.tar.gz
c-ares-b677ff3d15f3a26b185e89f15dee45bbd125902d.tar.bz2
c-ares-b677ff3d15f3a26b185e89f15dee45bbd125902d.zip
Intentionally avoid checking if the address of SystemFunction036, a.k.a.
RtlGenRandom, has been located or not. This function is only available on WinXP and later. When unavailable c-ares uses portable rand() function.
Diffstat (limited to 'ares_strerror.c')
-rw-r--r--ares_strerror.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ares_strerror.c b/ares_strerror.c
index 4a2f453..6ded90d 100644
--- a/ares_strerror.c
+++ b/ares_strerror.c
@@ -46,8 +46,7 @@ const char *ares_strerror(int code)
"Illegal hints flags specified",
"Error loading iphlpapi.dll",
"Error loading advapi32.dll",
- "Unknown GetNetworkParams function address",
- "Unknown SystemFunction036 function address"
+ "Could not find GetNetworkParams function"
};
if(code >= 0 && code < (int)(sizeof(errtext) / sizeof(*errtext)))