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

keep the number of bytes read in a size_t variable

This commit is contained in:
Daniel Stenberg 2004-03-10 09:44:42 +00:00
parent 9948250723
commit cf004cbc7e

View File

@ -739,7 +739,7 @@ CURLcode Curl_ConnectHTTPProxyTunnel(struct connectdata *conn,
CURLcode result;
int res;
int nread; /* total size read */
size_t nread; /* total size read */
int perline; /* count bytes per line */
bool keepon=TRUE;
ssize_t gotbytes;