Initialize the TLS environment *after* reading the config files.

This commit is contained in:
Julio Sánchez Fernández 1999-07-15 21:07:01 +00:00
parent fd49eacc4b
commit edb1d671f8

View File

@ -383,17 +383,17 @@ int main( int argc, char **argv )
goto destroy;
}
#ifdef HAVE_TLS
ldap_pvt_tls_init();
ldap_pvt_tls_init_def_ctx();
#endif
if ( read_config( configfile ) != 0 ) {
rc = 1;
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 19 );
goto destroy;
}
#ifdef HAVE_TLS
ldap_pvt_tls_init();
ldap_pvt_tls_init_def_ctx();
#endif
tcps = set_socket( inetd ? NULL : &bind_addr );
if ( tcps == -1 )
goto destroy;