From: Daniel Stenberg Date: Fri, 4 Feb 2005 13:42:41 +0000 (+0000) Subject: David Byron pointed out that this -1 on the buffer size is pointless since X-Git-Tag: before_ftp_statemachine~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=83c470a4439e132973a7668a6d6822af07708326;p=thirdparty%2Fcurl.git David Byron pointed out that this -1 on the buffer size is pointless since the buffer is already BUFSIZE +1 one big to fit the extra trailing zero. This change is reported to fix David's weird SSL problem... --- diff --git a/lib/transfer.c b/lib/transfer.c index aed230a177..bf67842a17 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -285,7 +285,7 @@ CURLcode Curl_readwrite(struct connectdata *conn, read or we get a EWOULDBLOCK */ do { size_t buffersize = data->set.buffer_size? - data->set.buffer_size:BUFSIZE -1; + data->set.buffer_size:BUFSIZE; /* receive data from the network! */ int readrc = Curl_read(conn, conn->sockfd, k->buf, buffersize, &nread);