glob_next_url: make the loop count upwards

As the former contruct apparently caused a compiler warning, mentioned
in d8efde07e556c.
This commit is contained in:
Daniel Stenberg 2014-12-16 09:01:56 +01:00
parent 088b9b2a97
commit ae56df82c1

View File

@ -494,9 +494,9 @@ CURLcode glob_next_url(char **globbed, URLGlob *glob)
/* implement a counter over the index ranges of all patterns, starting
with the rightmost pattern */
for(i = glob->size - 1; carry && (i < glob->size); --i) {
for(i = 0; carry && (i < glob->size); i++) {
carry = FALSE;
pat = &glob->pattern[i];
pat = &glob->pattern[glob->size - 1 - i];
switch (pat->type) {
case UPTSet:
if((pat->content.Set.elements) &&