This is an automated email from the git hooks/post-receive script.
tbordaz pushed a commit to branch master
in repository 389-ds-base.
The following commit(s) were added to refs/heads/master by this push:
new ecdf6d8 Ticket 50099 - extend error messages
ecdf6d8 is described below
commit ecdf6d8dfcc57775dda55acf46c1d2c314e77d50
Author: Thierry Bordaz <tbordaz(a)redhat.com>
AuthorDate: Wed Dec 19 14:30:57 2018 +0100
Ticket 50099 - extend error messages
---
ldap/servers/slapd/security_wrappers.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ldap/servers/slapd/security_wrappers.c b/ldap/servers/slapd/security_wrappers.c
index 49b1968..9c63318 100644
--- a/ldap/servers/slapd/security_wrappers.c
+++ b/ldap/servers/slapd/security_wrappers.c
@@ -239,15 +239,15 @@ slapd_system_isFIPS()
char buf[sizeof (PRIu64)];
int val;
if (PR_SUCCESS != PR_Access(FIPS_ENABLED, PR_ACCESS_READ_OK)) {
- slapi_log_err(SLAPI_LOG_ERR, "slapd_system_isFIPS", "Can not read %s\n", FIPS_ENABLED);
+ slapi_log_err(SLAPI_LOG_ERR, "slapd_system_isFIPS", "Can not access %s - assuming FIPS is OFF\n", FIPS_ENABLED);
goto done;
}
if ((prfd = PR_Open(FIPS_ENABLED, PR_RDONLY, SLAPD_DEFAULT_FILE_MODE)) == NULL) {
- slapi_log_err(SLAPI_LOG_ERR, "slapd_system_isFIPS", "Can not open %s\n", FIPS_ENABLED);
+ slapi_log_err(SLAPI_LOG_ERR, "slapd_system_isFIPS", "Can not open %s - assuming FIPS is OFF\n", FIPS_ENABLED);
goto done;
}
if (PR_Read(prfd, buf, sizeof (buf)) < 0) {
- slapi_log_err(SLAPI_LOG_ERR, "slapd_system_isFIPS", "Can not read %s\n", FIPS_ENABLED);
+ slapi_log_err(SLAPI_LOG_ERR, "slapd_system_isFIPS", "Can not read %s - assuming FIPS is OFF\n", FIPS_ENABLED);
PR_Close(prfd);
goto done;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.