Commit 907a6e0e authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Georg Horn the previous SSL_read() fix, this was actually the fix I did

on my test machine! :-)
parent d20186a7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -326,7 +326,7 @@ int Curl_read(struct connectdata *conn,
        /* if there's data pending, then we re-invoke SSL_read() */
        break;
      }
    } while(1);
    } while(loop);
    if(loop && SSL_pending(conn->ssl.handle))
      return -1; /* basicly EWOULDBLOCK */
  }