diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2016-12-30 08:51:49 +0100 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2016-12-30 08:51:49 +0100 |
commit | d7960b463f8e000fd0d64b86274678975ca62658 (patch) | |
tree | cbfe96d2803dcda17ee6ecb555e3c73a2509bcc8 | |
parent | 3c048f0d5674313fabe0b989fdddc3bf0ecf1437 (diff) | |
download | xK-d7960b463f8e000fd0d64b86274678975ca62658.tar.gz xK-d7960b463f8e000fd0d64b86274678975ca62658.tar.xz xK-d7960b463f8e000fd0d64b86274678975ca62658.zip |
Fix LibreSSL compatibility
-rw-r--r-- | common.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,7 +37,7 @@ static void init_openssl (void) { -#if OPENSSL_VERSION_NUMBER < 0x10100000L +#if OPENSSL_VERSION_NUMBER < 0x10100000L || LIBRESSL_VERSION_NUMBER SSL_library_init (); // XXX: this list is probably not complete atexit (EVP_cleanup); |