aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Kane <kkane@microsoft.com>2020-12-11 10:52:06 -0800
committerJakub Jelen <jjelen@redhat.com>2021-08-17 15:46:53 +0200
commiteffb421a88d08f0ab2ab07a4ee0e120206f03d5a (patch)
tree679fe320ebb32708e3dcf3bc720950ad1132e354
parent098ae8c4bdeab132caf1522ccf5ec72f450600f6 (diff)
downloadlibssh-effb421a88d08f0ab2ab07a4ee0e120206f03d5a.tar.gz
libssh-effb421a88d08f0ab2ab07a4ee0e120206f03d5a.tar.xz
libssh-effb421a88d08f0ab2ab07a4ee0e120206f03d5a.zip
Fix CMake warning about mismatched if/endif arguments during OpenSSL detection
Signed-off-by: Kevin Kane <kkane@microsoft.com> Reviewed-by: Jakub Jelen <jjelen@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org> (cherry picked from commit 919387ae644b607b021c110dbe3b5bee9df08d91)
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c40fa0f9..416bda78 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -73,7 +73,7 @@ else (WITH_GCRYPT)
message(FATAL_ERROR "Could not find OpenSSL, GCrypt or mbedTLS")
endif (NOT MBEDTLS_FOUND)
endif (NOT GCRYPT_FOUND)
- endif (NOT OPENSSL_FOUND)
+ endif (OPENSSL_FOUND)
endif(WITH_GCRYPT)
if (UNIT_TESTING)