mirror of
https://github.com/curl/curl.git
synced 2026-04-14 21:41:41 +03:00
openssl: drop redundant version check
It had a typo, but it wasn't causing an issue, because `TLS1_3_VERSION`
is enough to detect this feature and the version check remained unused.
Follow-up to 0d3b5937b3 #16477
Cherry-picked from #18330
Closes #18333
This commit is contained in:
parent
696150b752
commit
1d7fddde42
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@
|
|||
|
||||
/* Check for OpenSSL 1.1.1 which has early data support. */
|
||||
#undef HAVE_OPENSSL_EARLYDATA
|
||||
#if OPENSSL_VERSION_NUMBER >= 0x10100010L && defined(TLS1_3_VERSION) && \
|
||||
#if defined(TLS1_3_VERSION) && \
|
||||
!defined(OPENSSL_IS_BORINGSSL) && !defined(OPENSSL_IS_AWSLC)
|
||||
#define HAVE_OPENSSL_EARLYDATA
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue