Commit ae56df82 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

glob_next_url: make the loop count upwards

As the former contruct apparently caused a compiler warning, mentioned
in d8efde07.
parent 088b9b2a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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) &&