mirror of
https://github.com/curl/curl.git
synced 2026-07-31 14:58:02 +03:00
or upper -> higher
This commit is contained in:
parent
73daec6620
commit
68a0bb1f50
5 changed files with 7 additions and 7 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue