From: Daniel Stenberg Date: Wed, 16 Jan 2002 23:28:58 +0000 (+0000) Subject: SSL writes passed back a silly length... X-Git-Tag: curl-7_9_3-pre3~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e177f145954e6918c0926b2e400892caaa7fae8f;p=thirdparty%2Fcurl.git SSL writes passed back a silly length... --- diff --git a/lib/sendf.c b/lib/sendf.c index 631c3f2a2f..ddc61c6b3c 100644 --- a/lib/sendf.c +++ b/lib/sendf.c @@ -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