Skip to content
Snippets Groups Projects
Commit c2898e72 authored by Howard Chu's avatar Howard Chu Committed by Quanah Gibson-Mount
Browse files

ITS#8220 fix prev commit

Dynamic startup was failing
parent 88ba8845
No related branches found
No related tags found
No related merge requests found
......@@ -375,7 +375,12 @@ refint_open(
BackendDB *db = select_backend(&id->dn, 1);
if ( db ) {
if ( !db->be_search || !db->be_modify ) {
BackendInfo *bi;
if ( db == be )
bi = on->on_info->oi_orig;
else
bi = db->bd_info;
if ( !bi->bi_op_search || !bi->bi_op_modify ) {
Debug( LDAP_DEBUG_CONFIG,
"refint_response: backend missing search and/or modify\n",
0, 0, 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