From: Daniel McCarney Date: Fri, 21 Mar 2025 13:54:10 +0000 (-0400) Subject: cmake: fix typo in ECH config error msg X-Git-Tag: curl-8_13_0~106 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=58881058ad4ea74ecd6e5beb16310fd4d20ed755;p=thirdparty%2Fcurl.git cmake: fix typo in ECH config error msg Just a small typo I noticed while working on wiring up rustls-ffi vTLS ECH support. Closes #16786 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 5cef817cdd..f19467a8cc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1081,7 +1081,7 @@ if(USE_ECH) message(STATUS "HTTPSRR enabled") endif() else() - message(FATAL_ERROR "ECH requires ECH-enablded OpenSSL, BoringSSL, AWS-LC or wolfSSL") + message(FATAL_ERROR "ECH requires ECH-enabled OpenSSL, BoringSSL, AWS-LC or wolfSSL") endif() endif()