From: Daniel Stenberg Date: Mon, 5 Nov 2001 12:24:21 +0000 (+0000) Subject: Curl_ftpsendf() had wrong return type X-Git-Tag: curl-7_9_2~128 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d438d8d64c7d2e03a1acc7a39d6a7cfd0b264c6;p=curl Curl_ftpsendf() had wrong return type --- diff --git a/lib/ftp.h b/lib/ftp.h index dc71b7e19..a88cc7205 100644 --- a/lib/ftp.h +++ b/lib/ftp.h @@ -28,7 +28,7 @@ CURLcode Curl_ftp_done(struct connectdata *conn); 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,