From: Daniel Stenberg Date: Tue, 14 Aug 2001 08:25:08 +0000 (+0000) Subject: Curl_ftpsendf's third argument is now a const char * X-Git-Tag: curl-7_8_1~76 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9fa464aa94abc4bfdaa87675d94c4175d8c151fb;p=thirdparty%2Fcurl.git Curl_ftpsendf's third argument is now a const char * --- diff --git a/lib/ftp.h b/lib/ftp.h index ae923cdfe5..bce3395639 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(int fd, struct connectdata *, char *fmt, ...); +size_t Curl_ftpsendf(int fd, struct connectdata *, const char *fmt, ...); /* The kerberos stuff needs this: */ int Curl_GetFTPResponse(int sockfd, char *buf,