Skip to content

Commit

Permalink
tls_wolfssl: un-break jammy using libwolfssl32
Browse files Browse the repository at this point in the history
(cherry-pick from 1e87f96)
  • Loading branch information
space88man committed Jan 30, 2024
1 parent d72637b commit 41f9a92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/tls_wolfssl/tls_domain.c
Original file line number Diff line number Diff line change
Expand Up @@ -728,8 +728,8 @@ static int set_ssl_options(tls_domain_t *d)
{
long options;

options = WOLFSSL_OP_ALL; /* all the bug workarounds by default */
options |= WOLFSSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION
options = SSL_OP_ALL; /* all the bug workarounds by default */
options |= SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION
| WOLFSSL_OP_CIPHER_SERVER_PREFERENCE;

do {
Expand Down

0 comments on commit 41f9a92

Please sign in to comment.