aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-02-03 09:52:32 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-02-03 09:52:32 +0000
commit556b68f44ee3db9cd3e7ae794e503901b77772e6 (patch)
tree10b4d5df48ff82e394367caaa866226e09be4f95 /lib
parent3f37ae471dfc36ea28ac4445ba8b2401a75ca180 (diff)
the unused quit-function didn't pass a correct variable type to the
response reading function
Diffstat (limited to 'lib')
-rw-r--r--lib/ftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index 51159f894..8af1ad19f 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -2421,7 +2421,7 @@ CURLcode Curl_ftpsendf(struct connectdata *conn,
*/
CURLcode Curl_ftp_quit(struct connectdata *conn)
{
- int nread;
+ ssize_t nread;
int ftpcode;
CURLcode ret;