mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-21 07:09:34 -05:00
ITS#9660 back-mdb: make startup fail msg less specific
This commit is contained in:
parent
722a7b9891
commit
f0c7427ba3
1 changed files with 2 additions and 2 deletions
|
|
@ -182,7 +182,7 @@ mdb_db_open( BackendDB *be, ConfigReply *cr )
|
||||||
if ( rc ) {
|
if ( rc ) {
|
||||||
Debug( LDAP_DEBUG_ANY,
|
Debug( LDAP_DEBUG_ANY,
|
||||||
LDAP_XSTRING(mdb_db_open) ": database \"%s\" cannot be opened: %s (%d). "
|
LDAP_XSTRING(mdb_db_open) ": database \"%s\" cannot be opened: %s (%d). "
|
||||||
"Restore from backup!\n",
|
"Administrator intervention needed!\n",
|
||||||
be->be_suffix[0].bv_val, mdb_strerror(rc), rc );
|
be->be_suffix[0].bv_val, mdb_strerror(rc), rc );
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
|
@ -191,7 +191,7 @@ mdb_db_open( BackendDB *be, ConfigReply *cr )
|
||||||
if ( rc ) {
|
if ( rc ) {
|
||||||
Debug( LDAP_DEBUG_ANY,
|
Debug( LDAP_DEBUG_ANY,
|
||||||
LDAP_XSTRING(mdb_db_open) ": database \"%s\" cannot be opened: %s (%d). "
|
LDAP_XSTRING(mdb_db_open) ": database \"%s\" cannot be opened: %s (%d). "
|
||||||
"Restore from backup!\n",
|
"Administrator intervention needed!\n",
|
||||||
be->be_suffix[0].bv_val, mdb_strerror(rc), rc );
|
be->be_suffix[0].bv_val, mdb_strerror(rc), rc );
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue