Commit 9ee7a014 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Handle short reads

parent e1ab7db8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -54,7 +54,7 @@ int test(char *URL)

        total += iolen;

      } while((res == CURLE_AGAIN) && (total < 129));
      } while(((res == CURLE_OK) || (res == CURLE_AGAIN)) && (total < 129));
    }
  }