1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

SSL writes passed back a silly length...

This commit is contained in:
Daniel Stenberg 2002-01-16 23:28:58 +00:00
parent 5c6eddcadd
commit e177f14595

View File

@ -212,6 +212,7 @@ CURLcode Curl_write(struct connectdata *conn, int sockfd,
failf(conn->data, "SSL_write() return error %d\n", err);
return CURLE_WRITE_ERROR;
}
bytes_written = rc;
}
else {
#endif