This is an automated email from the git hooks/post-receive script.
firstyear pushed a change to branch master in repository 389-ds-base.
from 9e1a761 Ticket 49273 - crash when DBVERSIOn is corrupt. new d8cccbf Ticket 49273 - crash when DBVERSION is corrupt.
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: ldap/servers/slapd/back-ldbm/dbversion.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
This is an automated email from the git hooks/post-receive script.
firstyear pushed a commit to branch master in repository 389-ds-base.
commit d8cccbf70e2cc8b807190214a93d20b20d77db50 Author: William Brown firstyear@redhat.com Date: Wed May 31 17:14:54 2017 +1000
Ticket 49273 - crash when DBVERSION is corrupt.
Fix Description: Fix typo in error message.
https://pagure.io/389-ds-base/issue/49273
Author: wibrown
Review by: One line rule --- ldap/servers/slapd/back-ldbm/dbversion.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ldap/servers/slapd/back-ldbm/dbversion.c b/ldap/servers/slapd/back-ldbm/dbversion.c index d4cc806..2d7d82e 100644 --- a/ldap/servers/slapd/back-ldbm/dbversion.c +++ b/ldap/servers/slapd/back-ldbm/dbversion.c @@ -185,7 +185,7 @@ dbversion_read(struct ldbminfo *li, const char *directory, * which seems appropriate for the error here :) */ slapi_log_err(SLAPI_LOG_CRIT, "dbversion_read", "Could not parse file "%s". It may be corrupted.\n", filename); - slapi_log_err(SLAPI_LOG_CRIT, "dbversion_read", "It may be possible to recover by replicing with a valid DBVERSION file from another DB"); + slapi_log_err(SLAPI_LOG_CRIT, "dbversion_read", "It may be possible to recover by replacing with a valid DBVERSION file from another DB instance"); return EIDRM; }
389-commits@lists.fedoraproject.org