mirror of https://github.com/getdnsapi/getdns.git
Merge branch 'release/v1.0.0b2' into release/v1.1.0a1
This commit is contained in:
commit
31f1375b8e
|
@ -40,6 +40,8 @@
|
|||
* Bugfix: Build fails with autoconf 2.63, works with 2.68.
|
||||
Thanks Robert Groenenberg
|
||||
* Doxygen output for getdns.h and getdns_extra.h only
|
||||
* Do not call SSL_library_init() from getdns_context_create() when
|
||||
the second bit from the set_from_os parameter is set.
|
||||
|
||||
* 2016-03-31: Version 1.0.0b1
|
||||
* openssl 1.1.0 support
|
||||
|
|
|
@ -1319,7 +1319,9 @@ getdns_context_create_with_extended_memory_functions(
|
|||
/* Unbound needs SSL to be init'ed this early when TLS is used. However we
|
||||
* don't know that till later so we will have to do this every time. */
|
||||
|
||||
SSL_library_init();
|
||||
if (set_from_os & 2 == 0)
|
||||
SSL_library_init();
|
||||
|
||||
#ifdef HAVE_LIBUNBOUND
|
||||
result->unbound_ctx = NULL;
|
||||
if ((r = rebuild_ub_ctx(result)))
|
||||
|
|
Loading…
Reference in New Issue