fix windows build (FSBUILD-261)

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@17003 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2010-03-16 13:47:52 +00:00
parent 446aab0899
commit bee11ecf2e
1 changed files with 6 additions and 5 deletions

View File

@ -345,6 +345,7 @@ static switch_xml_t xml_curl_fetch(const char *section, const char *tag_name, co
xml_binding_t **first_order = NULL;
xml_binding_t **second_order = NULL;
switch_xml_t result = NULL;
int i, b;
/* Count how many elements we have */
for( ; binding != NULL; binding = binding->next) {
@ -375,7 +376,7 @@ static switch_xml_t xml_curl_fetch(const char *section, const char *tag_name, co
/* Put all weight=0 at beginning of first ordering array */
binding = root; pos = 0;
for(int i = 0; i < count; i++) {
for(i = 0; i < count; i++) {
binding = &bindings_copy[i];
if(binding->weight == 0) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Copying [%s] to first_order[%d]\n", binding->url, pos);
@ -386,7 +387,7 @@ static switch_xml_t xml_curl_fetch(const char *section, const char *tag_name, co
/* Then dump everything else into the first ordering array */
binding = root;
for(int i = 0; i < count; i++) {
for(i = 0; i < count; i++) {
binding = &bindings_copy[i];
if(binding->weight != 0) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Copying [%s] to first_order[%d]\n", binding->url, pos);
@ -399,10 +400,10 @@ static switch_xml_t xml_curl_fetch(const char *section, const char *tag_name, co
/* We need to pick every element in the array, so loop once for every one of them */
pos = 0;
for(int i = 0; i < count; i++) {
for(i = 0; i < count; i++) {
/* Calculate the total remaining unchosen weight */
total_weight = 0; running_weight = 0;
for(int b = 0; b < count; b++) {
for(b = 0; b < count; b++) {
binding = &bindings_copy[b];
if(!binding->chosen) total_weight += binding->weight;
}
@ -417,7 +418,7 @@ static switch_xml_t xml_curl_fetch(const char *section, const char *tag_name, co
/* Then grab the first unchosen element whose running_weight >= rand_weight
and move it into our 'picked' list */
binding = root;
for(int b = 0; b < count; b++) {
for(b = 0; b < count; b++) {
binding = &bindings_copy[b];
if(binding->chosen) continue; /* skip already picked elements */