fix incorrect return type for Curl_ftpsendf(), fix came from cURL CVS

--
Problem on 64-bit archs pointed out by: Nikolay Sturm <Nikolay.Sturm@desy.de> and naddy@
This commit is contained in:
brad 2001-11-23 20:35:49 +00:00
parent c7e57eb2fa
commit a6fb9e9061

View File

@ -0,0 +1,11 @@
--- lib/ftp.h.orig Fri Nov 23 12:23:29 2001
+++ lib/ftp.h Fri Nov 23 12:24:04 2001
@@ -28,7 +28,7 @@ CURLcode Curl_ftp_done(struct connectdat
CURLcode Curl_ftp_connect(struct connectdata *conn);
CURLcode Curl_ftp_disconnect(struct connectdata *conn);
-size_t Curl_ftpsendf(struct connectdata *, const char *fmt, ...);
+CURLcode Curl_ftpsendf(struct connectdata *, const char *fmt, ...);
/* The kerberos stuff needs this: */
int Curl_GetFTPResponse(char *buf, struct connectdata *conn,