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

if it's missing, just succeed in this case.
This commit is contained in:
Howard Chu 2005-07-05 02:40:01 +00:00
parent 754a059951
commit 3232686cc1

View File

@ -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,