aboutsummaryrefslogtreecommitdiff
path: root/lib/ftp.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-01-31 13:54:12 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-01-31 13:54:12 +0000
commitc41c5a0ef236f1eb1a973eeb25f47e848c9e68db (patch)
tree319694e18aded30c73897fb4b776311f54c807a5 /lib/ftp.c
parentc0c0283356f288ba98e374964231007f623e84cd (diff)
curl_read() and Curl_read() now have ssize_t in the last argument
Diffstat (limited to 'lib/ftp.c')
-rw-r--r--lib/ftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index e7c968a00..0a2c43aaf 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -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;