Pārlūkot izejas kodu

Merge branch 'bugfix/asio_ssl_build' into 'release/v4.4'

asio: Fix ssl example build removing openssl warning

See merge request espressif/esp-idf!15498
David Čermák 4 gadi atpakaļ
vecāks
revīzija
43a81fb2f9
1 mainītis faili ar 1 papildinājumiem un 2 dzēšanām
  1. 1 2
      components/openssl/include/openssl/ssl.h

+ 1 - 2
components/openssl/include/openssl/ssl.h

@@ -4,8 +4,7 @@
  * SPDX-License-Identifier: Apache-2.0
  */
 
-// Allow for this warning suppression only in IDF_CI_BUILD
-#if !defined(ESP_OPENSSL_SUPPRESS_LEGACY_WARNING) || !defined(IDF_CI_BUILD)
+#if !defined(ESP_OPENSSL_SUPPRESS_LEGACY_WARNING)
 #warning "OpenSSL component will be removed from ESP-IDF in v5.0, please use esp_tls instead"
 #endif