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

Kevin Roth's discovered SSL download problem

parent 5370d7a6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -310,7 +310,7 @@ int Curl_read(struct connectdata *conn,
    do {
      nread = SSL_read(conn->ssl.handle, buf, buffersize);

      if(nread > 0)
      if(nread >= 0)
        /* successful read */
        break;