From 8aace7dcf979545cd63190e30891268350d10051 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 26 May 2026 21:50:34 +0200 Subject: [PATCH] libssh.c simplify wording, version -> v --- lib/vssh/libssh.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/vssh/libssh.c b/lib/vssh/libssh.c index 532b4b0706..eaf53033fa 100644 --- a/lib/vssh/libssh.c +++ b/lib/vssh/libssh.c @@ -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 version 0.11.0, hence such an operation is - * not needed for versions after (and including) 0.11.0. + * internally since v0.11.0, hence such an operation is not needed + * for v0.11.0 and greater. */ if(len > 32768) len = 32768;