From: Daniel Stenberg Date: Wed, 18 Apr 2007 20:15:22 +0000 (+0000) Subject: clarify the comment about libssh2_sftp_write's return type X-Git-Tag: curl-7_16_3~170 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c234b9d04b6ba778941a847e731b2392977f892d;p=thirdparty%2Fcurl.git clarify the comment about libssh2_sftp_write's return type --- diff --git a/lib/ssh.c b/lib/ssh.c index a816c66c19..ee122ff06d 100644 --- a/lib/ssh.c +++ b/lib/ssh.c @@ -1018,7 +1018,8 @@ CURLcode Curl_sftp_done(struct connectdata *conn, CURLcode status, ssize_t Curl_sftp_send(struct connectdata *conn, int sockindex, void *mem, size_t len) { - ssize_t nwrite; /* libssh2_sftp_write() returns size_t !*/ + ssize_t nwrite; /* libssh2_sftp_write() used to return size_t in 0.14 + but is changed to ssize_t in 0.15! */ #ifdef LIBSSH2SFTP_EAGAIN /* we prefer the non-blocking API but that didn't exist previously */