curl_read() and Curl_read() now have ssize_t in the last argument

This commit is contained in:
Daniel Stenberg
2001-01-31 13:54:12 +00:00
parent c0c0283356
commit c41c5a0ef2
7 changed files with 19 additions and 8 deletions

View File

@@ -221,7 +221,7 @@ int Curl_GetFTPResponse(int sockfd, char *buf,
int *ftpcode)
{
int nread;
size_t keepon=TRUE;
ssize_t keepon=TRUE;
char *ptr;
int timeout = 3600; /* in seconds */
struct timeval interval;