From 5d786d0e9795f6a210645bd75717d3ef1849e5ff Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Wed, 11 Nov 2009 08:56:46 +0000 Subject: Renamed fpGetNetworkParams and fpSystemFunction036 to avoid namespace pollution with static library --- ares/ares_init.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ares/ares_init.c') diff --git a/ares/ares_init.c b/ares/ares_init.c index b2837901d..dc3e52c9a 100644 --- a/ares/ares_init.c +++ b/ares/ares_init.c @@ -581,7 +581,7 @@ static int get_iphlpapi_dns_info (char *ret_buf, size_t ret_size) if (!fi) return 0; - res = (*fpGetNetworkParams) (fi, &size); + res = (*ares_fpGetNetworkParams) (fi, &size); if ((res != ERROR_BUFFER_OVERFLOW) && (res != ERROR_SUCCESS)) goto quit; @@ -590,7 +590,7 @@ static int get_iphlpapi_dns_info (char *ret_buf, size_t ret_size) goto quit; fi = newfi; - res = (*fpGetNetworkParams) (fi, &size); + res = (*ares_fpGetNetworkParams) (fi, &size); if (res != ERROR_SUCCESS) goto quit; @@ -1503,9 +1503,9 @@ static void randomize_key(unsigned char* key,int key_data_len) int counter=0; #ifdef WIN32 BOOLEAN res; - if (fpSystemFunction036) + if (ares_fpSystemFunction036) { - res = (*fpSystemFunction036) (key, key_data_len); + res = (*ares_fpSystemFunction036) (key, key_data_len); if (res) randomized = 1; } -- cgit v1.2.3