diff --git a/lib/curl_setup.h b/lib/curl_setup.h index 41bac22a92..659d7e6e51 100644 --- a/lib/curl_setup.h +++ b/lib/curl_setup.h @@ -56,8 +56,8 @@ #ifdef __APPLE__ #include #include -/* Fixup faulty target macro initialization in macOS SDK since v14.4 (as of - 15.0 beta). The SDK target detection in `TargetConditionals.h` correctly +/* Fixup faulty target macro initialization in macOS SDK v14.4 or greater (as + of 15.0 beta). The SDK target detection in `TargetConditionals.h` correctly detects macOS, but fails to set the macro's old name `TARGET_OS_OSX`, then continues to set it to a default value of 0. Other parts of the SDK still rely on the old name, and with this inconsistency our builds fail due to diff --git a/lib/vssh/libssh.c b/lib/vssh/libssh.c index eaf53033fa..5b223f3f26 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 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; diff --git a/tests/runtests.pl b/tests/runtests.pl index c35f1bd237..767abcd367 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -2700,7 +2700,7 @@ if($valgrind) { undef $valgrind; } else { - # since valgrind 2.1.x, '--tool' option is mandatory + # With valgrind v2.1.x or greater, '--tool' option is mandatory # use it, if it is supported by the version installed on the system # (this happened in 2003, so we could probably do not need to care about # that old version any longer and delete this check)