or upper -> higher

This commit is contained in:
Viktor Szakats 2026-04-21 23:26:33 +02:00
parent 73daec6620
commit 68a0bb1f50
No known key found for this signature in database
5 changed files with 7 additions and 7 deletions

View file

@ -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 upper.
Or mingw-w64 9.0 or higher.
*/
#if (defined(__MINGW64_VERSION_MAJOR) && __MINGW64_VERSION_MAJOR >= 9) || \
(defined(_MSC_VER) && (_MSC_VER >= 1800) && !defined(_USING_V110_SDK71_))
@ -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 upper */
/* Assume ALPN support with WINE 6.0 or higher */
if(wine_version)
curlx_str_number(&wine_version, &ver, 20);
s_win_has_alpn = (ver >= 6);