X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=blobdiff_plain;f=src%2Futil.cpp;h=80186e5fa13652d981278155478ac1a9f3f5c77b;hp=0a19fe92557b174df12e64836920ffaf4da4ff9d;hb=3a0d69bbfe48f57128565f4bdd13777ca3a0d5c4;hpb=f2b467c8d7d761dd47e58ad9ed4d8ede92a24601 diff --git a/src/util.cpp b/src/util.cpp index 0a19fe9..80186e5 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -31,7 +31,6 @@ namespace boost { #include #include #include -#include #ifdef WIN32 #ifdef _WIN32_WINNT @@ -122,13 +121,6 @@ public: ppmutexOpenSSL[i] = new CCriticalSection(); CRYPTO_set_locking_callback(locking_callback); - // OpenSSL can optionally load a config file which lists optional loadable modules and engines. - // We don't use them so we don't require the config. However some of our libs may call functions - // which attempt to load the config file, possibly resulting in an exit() or crash if it is missing - // or corrupt. Explicitly tell OpenSSL not to try to load the file. The result for our libs will be - // that the config appears to have been loaded and there are no modules/engines available. - OPENSSL_no_config(); - #ifdef WIN32 // Seed random number generator with screen scrape and other hardware sources RAND_screen();