From 46d858bc3bbbb7727034b7fff10528ff8c7156ce Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 26 May 2026 18:45:06 +0200 Subject: [PATCH] or higher -> or greater 9 src --- lib/vtls/mbedtls.c | 2 +- lib/vtls/schannel.c | 6 +++--- lib/vtls/wolfssl.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/vtls/mbedtls.c b/lib/vtls/mbedtls.c index fb93297120..6c13b89f90 100644 --- a/lib/vtls/mbedtls.c +++ b/lib/vtls/mbedtls.c @@ -36,7 +36,7 @@ #include #if MBEDTLS_VERSION_NUMBER < 0x03020000 -#error "mbedTLS 3.2.0 or higher required" +#error "mbedTLS 3.2.0 or greater required" #endif #include #include diff --git a/lib/vtls/schannel.c b/lib/vtls/schannel.c index c870b3c5f5..ad2b821710 100644 --- a/lib/vtls/schannel.c +++ b/lib/vtls/schannel.c @@ -122,7 +122,7 @@ /* ALPN requires version 8.1 of the Windows SDK, which was shipped with Visual Studio 2013, aka _MSC_VER 1800: https://learn.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/hh831771 - Or mingw-w64 9.0 or higher. + Or mingw-w64 9.0 or greater. */ #if (defined(__MINGW64_VERSION_MAJOR) && __MINGW64_VERSION_MAJOR >= 9) || \ (defined(_MSC_VER) && (_MSC_VER >= 1800) && !defined(_USING_V110_SDK71_)) @@ -1513,7 +1513,7 @@ static void traverse_cert_store(const CERT_CONTEXT *context, (current_context = CertEnumCertificatesInStore( context->hCertStore, current_context)) != NULL) { - /* Windows 11 22H2 OS Build 22621.674 or higher enumerates certificates in + /* Windows 11 22H2 OS Build 22621.674 or greater enumerates certificates in leaf-to-root order while all previous versions of Windows enumerate certificates in root-to-leaf order. Determine the order of enumeration by comparing SECPKG_ATTR_REMOTE_CERT_CONTEXT's pbCertContext with the @@ -2610,7 +2610,7 @@ static int schannel_init(void) if(p_wine_get_version) { /* WINE detected */ curl_off_t ver = 0; const char *wine_version = p_wine_get_version(); /* e.g. "6.0.2" */ - /* Assume ALPN support with WINE 6.0 or higher */ + /* Assume ALPN support with WINE 6.0 or greater */ if(wine_version) curlx_str_number(&wine_version, &ver, 20); s_win_has_alpn = (ver >= 6); diff --git a/lib/vtls/wolfssl.c b/lib/vtls/wolfssl.c index 9d85435221..14b176dbcb 100644 --- a/lib/vtls/wolfssl.c +++ b/lib/vtls/wolfssl.c @@ -34,10 +34,10 @@ #include #if LIBWOLFSSL_VERSION_HEX < 0x05000000 /* wolfSSL 5.0.0 (2021-11-01) */ -#error "wolfSSL version should be 5.0.0 or higher" +#error "wolfSSL version should be 5.0.0 or greater" #endif #if defined(OPENSSL_COEXIST) && LIBWOLFSSL_VERSION_HEX < 0x05007006 -#error "wolfSSL 5.7.6 or higher is required to coexist with OpenSSL" +#error "wolfSSL 5.7.6 or greater is required to coexist with OpenSSL" #endif /* To determine what functions are available we rely on one or both of: