diff options
author | fireice-uk <fireice2@o2.pl> | 2017-03-14 19:03:39 +0000 |
---|---|---|
committer | fireice-uk <fireice2@o2.pl> | 2017-03-14 19:03:39 +0000 |
commit | 8d2f179f3e9bd56088c7d961919d06abaa6505ba (patch) | |
tree | a3631a95517a90dcd1ec7a662f4d93e0d64eab44 /cli-miner.cpp | |
parent | b67d3fb0e44174b758632751c7e0ded1097de17c (diff) | |
download | xmr-stak-8d2f179f3e9bd56088c7d961919d06abaa6505ba.zip xmr-stak-8d2f179f3e9bd56088c7d961919d06abaa6505ba.tar.gz |
clang fix
Diffstat (limited to 'cli-miner.cpp')
-rw-r--r-- | cli-miner.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli-miner.cpp b/cli-miner.cpp index 0382785..5e19755 100644 --- a/cli-miner.cpp +++ b/cli-miner.cpp @@ -33,6 +33,7 @@ #include <string.h> #include <openssl/ssl.h> +#include <openssl/err.h> //Do a press any key for the windows folk. *insert any key joke here* #ifdef _WIN32 @@ -56,6 +57,8 @@ int main(int argc, char *argv[]) SSL_library_init(); SSL_load_error_strings(); ERR_load_BIO_strings(); + ERR_load_crypto_strings(); + SSL_load_error_strings(); OpenSSL_add_all_digests(); const char* sFilename = "config.txt"; |