From a4402ae443250e080b4989063c4e283aa6bec84a Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 12 Jun 2026 21:23:12 +0200 Subject: [PATCH] Revert "or lower -> or less" This reverts commit d729c84808fc98b2e8799c32d6a355d81183b70c. --- docs/INSTALL-CMAKE.md | 2 +- lib/vtls/gtls.c | 2 +- lib/vtls/openssl.c | 2 +- lib/vtls/wolfssl.c | 2 +- m4/curl-functions.m4 | 10 +++++----- m4/curl-reentrant.m4 | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/INSTALL-CMAKE.md b/docs/INSTALL-CMAKE.md index 1f3cb3db19..9498d164f8 100644 --- a/docs/INSTALL-CMAKE.md +++ b/docs/INSTALL-CMAKE.md @@ -562,7 +562,7 @@ We recommend using CMake to build curl with MSVC. The project build files reside in project/Windows/VC\* for VS2010, VS2012 and VS2013. -These CMake Visual Studio generators require CMake v3.24 or less. You can +These CMake Visual Studio generators require CMake v3.24 or lower. You can download them from . You can also use `-G "NMake Makefiles"`, which is supported by all CMake diff --git a/lib/vtls/gtls.c b/lib/vtls/gtls.c index 81dff1da68..1a7a4a1e5b 100644 --- a/lib/vtls/gtls.c +++ b/lib/vtls/gtls.c @@ -1896,7 +1896,7 @@ static CURLcode gtls_verifyserver(struct Curl_cfilter *cf, goto out; #ifdef CURL_GNUTLS_EARLY_DATA - /* Only on TLSv1.2 or less do we have the session id now. For + /* Only on TLSv1.2 or lower do we have the session id now. For * TLSv1.3 we get it via a SESSION_TICKET message that arrives later. */ if(gnutls_protocol_get_version(session) < GNUTLS_TLS1_3) result = cf_gtls_update_session_id(cf, data, session); diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index c52d84c190..cc9dea0bff 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -4148,7 +4148,7 @@ static CURLcode ossl_connect_step2(struct Curl_cfilter *cf, #if !defined(HAVE_KEYLOG_UPSTREAM) && !defined(HAVE_KEYLOG_CALLBACK) /* If key logging is enabled, wait for the handshake to complete and then - * proceed with logging secrets (for TLS 1.2 or less). + * proceed with logging secrets (for TLS 1.2 or lower). */ if(Curl_tls_keylog_enabled() && !octx->keylog_done) ossl_log_tls12_secret(octx->ssl, &octx->keylog_done); diff --git a/lib/vtls/wolfssl.c b/lib/vtls/wolfssl.c index bc88d0153c..3e767be879 100644 --- a/lib/vtls/wolfssl.c +++ b/lib/vtls/wolfssl.c @@ -1729,7 +1729,7 @@ static CURLcode wssl_handshake(struct Curl_cfilter *cf, struct Curl_easy *data) #ifdef OPENSSL_EXTRA if(Curl_tls_keylog_enabled()) { /* If key logging is enabled, wait for the handshake to complete and then - * proceed with logging secrets (for TLS 1.2 or less). + * proceed with logging secrets (for TLS 1.2 or lower). * * During the handshake (ret==-1), wolfSSL_want_read() is true as it waits * for the server response. At that point the master secret is not yet diff --git a/m4/curl-functions.m4 b/m4/curl-functions.m4 index f0d8b26496..df14c1345a 100644 --- a/m4/curl-functions.m4 +++ b/m4/curl-functions.m4 @@ -1335,7 +1335,7 @@ AC_DEFUN([CURL_CHECK_FUNC_GETADDRINFO], [ fi case $host_os in aix[[1234]].* | aix5.[[01]].*) - dnl AIX 5.1 or less + dnl AIX 5.1 or lower tst_tsafe_getaddrinfo="no" ;; aix*) @@ -1343,11 +1343,11 @@ AC_DEFUN([CURL_CHECK_FUNC_GETADDRINFO], [ tst_tsafe_getaddrinfo="yes" ;; darwin[[12345]].*) - dnl Darwin 5.0 and macOS 10.1.x or less + dnl Darwin 5.0 and macOS 10.1.x or lower tst_tsafe_getaddrinfo="no" ;; freebsd[[1234]].* | freebsd5.[[1234]]*) - dnl FreeBSD 5.4 or less + dnl FreeBSD 5.4 or lower tst_tsafe_getaddrinfo="no" ;; freebsd*) @@ -1355,7 +1355,7 @@ AC_DEFUN([CURL_CHECK_FUNC_GETADDRINFO], [ tst_tsafe_getaddrinfo="yes" ;; hpux[[123456789]].* | hpux10.* | hpux11.0* | hpux11.10*) - dnl HP-UX 11.10 or less + dnl HP-UX 11.10 or lower tst_tsafe_getaddrinfo="no" ;; hpux*) @@ -1367,7 +1367,7 @@ AC_DEFUN([CURL_CHECK_FUNC_GETADDRINFO], [ tst_tsafe_getaddrinfo="yes" ;; netbsd[[123]].*) - dnl NetBSD 3.x or less + dnl NetBSD 3.x or lower tst_tsafe_getaddrinfo="no" ;; netbsd*) diff --git a/m4/curl-reentrant.m4 b/m4/curl-reentrant.m4 index b6633644b4..9a267363b5 100644 --- a/m4/curl-reentrant.m4 +++ b/m4/curl-reentrant.m4 @@ -303,7 +303,7 @@ dnl Internal macro for CURL_CONFIGURE_THREAD_SAFE. AC_DEFUN([CURL_CHECK_NEED_THREAD_SAFE_SYSTEM], [ case $host_os in aix[[123]].* | aix4.[[012]].*) - dnl AIX 4.2 or less + dnl AIX 4.2 or lower tmp_need_thread_safe="no" ;; aix*)