Skip to content

Commit

Permalink
Fix Windows server-side for TLS 1.3 (#710)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfod authored Feb 14, 2025
1 parent 3203c4c commit 5fcecfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/windows/secure_channel_tls_handler.c
Original file line number Diff line number Diff line change
Expand Up @@ -2090,7 +2090,7 @@ static DWORD s_get_disabled_protocols(
break;
}
#if defined(SP_PROT_TLS1_3_SERVER)
if (!disable_tls13) {
if (disable_tls13) {
bit_disabled_protocols |= SP_PROT_TLS1_3_SERVER;
}
#endif
Expand Down

0 comments on commit 5fcecfc

Please sign in to comment.