mirror of
https://github.com/curl/curl.git
synced 2026-07-16 07:37:15 +03:00
wolfssl: fix build without TLS 1.3 support
Follow-up to: eac64c1879
Closes #21161
This commit is contained in:
parent
8deaf04feb
commit
7deed5bb55
1 changed files with 2 additions and 1 deletions
|
|
@ -1096,6 +1096,7 @@ static CURLcode wssl_init_ciphers(struct Curl_easy *data,
|
|||
}
|
||||
infof(data, "Cipher selection: %s", ciphers);
|
||||
}
|
||||
return CURLE_OK;
|
||||
#else
|
||||
CURLcode result = CURLE_OK;
|
||||
if(conn_config->cipher_list || conn_config->cipher_list13) {
|
||||
|
|
@ -1131,8 +1132,8 @@ static CURLcode wssl_init_ciphers(struct Curl_easy *data,
|
|||
}
|
||||
curlx_dyn_free(&c);
|
||||
}
|
||||
#endif
|
||||
return result;
|
||||
#endif
|
||||
}
|
||||
|
||||
static CURLcode wssl_init_curves(struct Curl_easy *data,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue