12345678910111213141516171819202122 |
- $OpenBSD: patch-src_ssl_c,v 1.5 2017/01/09 15:40:30 gsoares Exp $
- --- src/ssl.c.orig Mon Jan 9 10:52:07 2017
- +++ src/ssl.c Mon Jan 9 10:52:47 2017
- @@ -50,7 +50,7 @@ NOEXPORT int add_rand_file(GLOBAL_OPTIONS *, const cha
- int index_cli, index_opt, index_redirect, index_addr;
-
- int ssl_init(void) { /* init TLS before parsing configuration file */
- -#if OPENSSL_VERSION_NUMBER>=0x10100000L
- +#if OPENSSL_VERSION_NUMBER>=0x10100000L && !defined(LIBRESSL_VERSION_NUMBER)
- OPENSSL_init_ssl(OPENSSL_INIT_LOAD_SSL_STRINGS |
- OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
- #else
- @@ -83,7 +83,7 @@ int ssl_init(void) { /* init TLS before parsing config
- }
-
- #ifndef OPENSSL_NO_DH
- -#if OPENSSL_VERSION_NUMBER<0x10100000L
- +#if OPENSSL_VERSION_NUMBER<0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
- /* this is needed for dhparam.c generated with OpenSSL >= 1.1.0
- * to be linked against the older versions */
- int DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g) {
|