Skip to content
Snippets Groups Projects
Commit 3232686c authored by Howard Chu's avatar Howard Chu
Browse files

ITS#3833 assume environment was already recovered by an external action

if it's missing, just succeed in this case.
parent 754a0599
No related branches found
No related tags found
No related merge requests found
......@@ -209,7 +209,10 @@ bdb_db_recover( BackendDB *be )
#endif
if( rc == ENOENT ) {
goto re_exit;
Debug( LDAP_DEBUG_TRACE,
"bdb_db_recover: DB environment files are missing, assuming it was "
"manually recovered\n", 0, 0, 0 );
return 0;
}
else if( rc != 0 ) {
Debug( LDAP_DEBUG_ANY,
......
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