From: Howard Chu Date: Thu, 9 Nov 2023 17:10:31 +0000 (+0000) Subject: ITS#9660 back-mdb: make startup fail msg less specific X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f0c7427ba3bae66e579ea02c59dccb99d7586812;p=thirdparty%2Fopenldap.git ITS#9660 back-mdb: make startup fail msg less specific --- diff --git a/servers/slapd/back-mdb/init.c b/servers/slapd/back-mdb/init.c index 606edbc1b5..5c6e55cd7e 100644 --- a/servers/slapd/back-mdb/init.c +++ b/servers/slapd/back-mdb/init.c @@ -182,7 +182,7 @@ mdb_db_open( BackendDB *be, ConfigReply *cr ) if ( rc ) { Debug( LDAP_DEBUG_ANY, 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 ); goto fail; } @@ -191,7 +191,7 @@ mdb_db_open( BackendDB *be, ConfigReply *cr ) if ( rc ) { Debug( LDAP_DEBUG_ANY, 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 ); goto fail; }