diff options
Diffstat (limited to 'cli-miner.cpp')
-rw-r--r-- | cli-miner.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli-miner.cpp b/cli-miner.cpp index 4a8454a..3e68610 100644 --- a/cli-miner.cpp +++ b/cli-miner.cpp @@ -24,6 +24,8 @@ #include <stdio.h> #include <string.h> +#include <openssl/ssl.h> + //Do a press any key for the windows folk. *insert any key joke here* #ifdef _WIN32 void win_exit() @@ -43,6 +45,9 @@ void do_benchmark(); int main(int argc, char *argv[]) { + SSL_library_init(); + SSL_load_error_strings(); + const char* sFilename = "config.txt"; bool benchmark_mode = false; |