aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Kane <kkane@microsoft.com>2020-12-11 10:52:06 -0800
committerJakub Jelen <jjelen@redhat.com>2020-12-14 11:14:30 +0100
commit919387ae644b607b021c110dbe3b5bee9df08d91 (patch)
tree87f328257e75d31d22a653329cc23d096b49276a
parent0987e6065c86f2f52b3c8835a0ad73d7ad082121 (diff)
downloadlibssh-919387ae644b607b021c110dbe3b5bee9df08d91.tar.gz
libssh-919387ae644b607b021c110dbe3b5bee9df08d91.tar.xz
libssh-919387ae644b607b021c110dbe3b5bee9df08d91.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>
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index db4657b4..2ae2525d 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)