I did this:
set CURL_SSL_BACKEND=openssl
curl -V
curl 7.70.0-DEV (i386-pc-win32) libcurl/7.70.0-DEV (GnuTLS/3.6.12) OpenSSL/3.0.0 (Schannel zlib/1.2.8
...
Drops the ) after Schannel. And a:
set CURL_SSL_BACKEND=schannel
curl -V
curl 7.70.0-DEV (i386-pc-win32) libcurl/7.70.0-DEV (GnuTLS/3.6.12) (OpenSSL/3.0.0) Schanne zlib/1.2.8
Drops the l in Schannel.
Looks like a problem in the for-loop of Curl_multissl_version().
I built with -DCURL_WITH_MULTI_SSL on Win-10 / MSVC-2019.
I did this:
Drops the
)afterSchannel. And a:Drops the
linSchannel.Looks like a problem in the for-loop of
Curl_multissl_version().I built with
-DCURL_WITH_MULTI_SSLon Win-10 / MSVC-2019.