From: Viktor Szakats Date: Thu, 29 Aug 2024 10:01:44 +0000 (+0200) Subject: cmake: fix internal variable names in Rustls detection X-Git-Tag: curl-8_10_0~93 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1b0568539d7979a9881559708d1825804a736d56;p=thirdparty%2Fcurl.git cmake: fix internal variable names in Rustls detection Follow-up to ed76a23fccc1e57028f6d178fccba617b53e36ee #14534 Closes #14719 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 0bde116665..0c17f37880 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -656,9 +656,9 @@ if(CURL_USE_RUSTLS) include_directories(${RUSTLS_INCLUDE_DIRS}) if(CURL_DEFAULT_SSL_BACKEND AND CURL_DEFAULT_SSL_BACKEND STREQUAL "rustls") - set(valid_default_ssl_backend TRUE) + set(_valid_default_ssl_backend TRUE) endif() - set(curl_ca_bundle_supported TRUE) + set(_curl_ca_bundle_supported TRUE) endif() if(CURL_DEFAULT_SSL_BACKEND AND NOT _valid_default_ssl_backend)