Skip to content

Commit 5fcecfc

Browse files
authored
Fix Windows server-side for TLS 1.3 (#710)
1 parent 3203c4c commit 5fcecfc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/windows/secure_channel_tls_handler.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2090,7 +2090,7 @@ static DWORD s_get_disabled_protocols(
20902090
break;
20912091
}
20922092
#if defined(SP_PROT_TLS1_3_SERVER)
2093-
if (!disable_tls13) {
2093+
if (disable_tls13) {
20942094
bit_disabled_protocols |= SP_PROT_TLS1_3_SERVER;
20952095
}
20962096
#endif

0 commit comments

Comments
 (0)