Don't implicitly inherit the default SSL_CTX, tls.c:alloc_handle will

set it explicitly and handle its refcount.
This commit is contained in:
Howard Chu 2006-04-07 01:52:32 +00:00
parent 7a5d12cc51
commit 056b193ed7

View File

@ -137,12 +137,12 @@ ldap_create( LDAP **ldp )
#endif
#ifdef HAVE_TLS
/* We inherit the SSL_CTX, don't need the names/paths. Leave them
* empty to allow new SSL_CTX's to be created from scratch.
/* We explicitly inherit the SSL_CTX, don't need the names/paths. Leave
* them empty to allow new SSL_CTX's to be created from scratch.
*/
memset( &ld->ld_options.ldo_tls_info, 0,
sizeof( ld->ld_options.ldo_tls_info ));
ld->ld_options.ldo_tls_ctx = NULL;
#endif
if ( gopts->ldo_tm_api &&