replace since with greater

This commit is contained in:
Viktor Szakats 2026-06-07 12:24:22 +02:00
parent 8aace7dcf9
commit 53ede4000b
No known key found for this signature in database
3 changed files with 5 additions and 5 deletions

View file

@ -3020,8 +3020,8 @@ static CURLcode sftp_send(struct Curl_easy *data, int sockindex,
* https://datatracker.ietf.org/doc/html/draft-ietf-secsh-filexfer-02
*
* libssh started applying appropriate read/write length limits
* internally since v0.11.0, hence such an operation is not needed
* for v0.11.0 and greater.
* internally in v0.11.0 and greater, hence such an operation is not
* needed for these versions.
*/
if(len > 32768)
len = 32768;