Skip to content
Snippets Groups Projects
Commit e48003e3 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

fixes for ITS#4291 and #4311 from HEAD

parent 6003bf87
No related branches found
No related tags found
No related merge requests found
......@@ -278,7 +278,8 @@ slapi_op_bind_callback( Operation *op, SlapReply *rs, int prc )
op->o_log_prefix,
BER_BVISNULL( &op->o_conn->c_dn )
? "<empty>" : op->o_conn->c_dn.bv_val,
op->orb_tmp_mech.bv_val, 0, 0 );
BER_BVISNULL( &op->orb_tmp_mech )
? "<empty>" : op->orb_tmp_mech.bv_val, 0, 0 );
return -1;
}
......@@ -880,7 +881,8 @@ int slapi_over_config( BackendDB *be )
ldap_pvt_thread_mutex_init( &slapi_time_mutex );
ldap_pvt_thread_mutex_init( &slapi_printmessage_mutex );
slapi_log_file = slapi_ch_strdup( LDAP_RUNDIR LDAP_DIRSEP "errors" );
if ( slapi_log_file == NULL )
slapi_log_file = slapi_ch_strdup( LDAP_RUNDIR LDAP_DIRSEP "errors" );
rc = slapi_int_init_object_extensions();
if ( rc != 0 )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment