From 853e240e1d5ca8e1fb9c550b7823ce9d55aef3a9 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 11 Mar 2003 18:58:21 +0000 Subject: Use ssize_t instead of 'int' to make the 64 bit sparc compiler happier. Fix by Richard Gorton. --- lib/ftp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/ftp.c') diff --git a/lib/ftp.c b/lib/ftp.c index 710bee925..cbac02f5b 100644 --- a/lib/ftp.c +++ b/lib/ftp.c @@ -173,7 +173,7 @@ static CURLcode AllowServerConnect(struct SessionHandle *data, * response and extract the relevant return code for the invoking function. */ -CURLcode Curl_GetFTPResponse(int *nreadp, /* return number of bytes read */ +CURLcode Curl_GetFTPResponse(ssize_t *nreadp, /* return number of bytes read */ struct connectdata *conn, int *ftpcode) /* return the ftp-code */ { @@ -387,7 +387,7 @@ CURLcode Curl_GetFTPResponse(int *nreadp, /* return number of bytes read */ CURLcode Curl_ftp_connect(struct connectdata *conn) { /* this is FTP and no proxy */ - int nread; + ssize_t nread; struct SessionHandle *data=conn->data; char *buf = data->state.buffer; /* this is our buffer */ struct FTP *ftp; -- cgit v1.2.3