Skip to content

Commit

Permalink
Replace OPENSSL_NO_TLS_PHA with SSL_VERIFY_POST_HANDSHAKE
Browse files Browse the repository at this point in the history
  • Loading branch information
WillChilds-Klein committed Jun 26, 2024
1 parent 3909fe4 commit 6743dc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/_ssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ extern const SSL_METHOD *TLSv1_2_method(void);
#endif


#if defined(OPENSSL_NO_TLS_PHA) || !defined(TLS1_3_VERSION) || defined(OPENSSL_NO_TLS1_3)
#if !defined(SSL_VERIFY_POST_HANDSHAKE) || !defined(TLS1_3_VERSION) || defined(OPENSSL_NO_TLS1_3)
#define PY_SSL_NO_POST_HS_AUTH
#endif

Expand Down

0 comments on commit 6743dc0

Please sign in to comment.