From 865943438bcb4cdd4feea97bb70de2ea8920dcf1 Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Thu, 6 Nov 2014 11:16:33 +0100 Subject: [PATCH] fixed #596: For OpenSSL 1.0.1, include openssl/crypto.h not openssl/fips.h --- Crypto/include/Poco/Crypto/OpenSSLInitializer.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Crypto/include/Poco/Crypto/OpenSSLInitializer.h b/Crypto/include/Poco/Crypto/OpenSSLInitializer.h index f4f128dcb..ec6e25b6f 100644 --- a/Crypto/include/Poco/Crypto/OpenSSLInitializer.h +++ b/Crypto/include/Poco/Crypto/OpenSSLInitializer.h @@ -22,7 +22,7 @@ #include "Poco/Crypto/Crypto.h" #include "Poco/Mutex.h" -#include +#include #ifdef OPENSSL_FIPS #include #endif @@ -109,6 +109,7 @@ inline void OpenSSLInitializer::enableFIPSMode(bool /*enabled*/) } #endif + } } // namespace Poco::Crypto