Skip to content

Commit fd9c416

Browse files
committed
* modules/ssl/ssl_engine_pphrase.c (modssl_load_keypair_engine):
Downgrade non-fatal errors to APLOG_NOTICE from APLOG_EMERG. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1921076 13f79535-47bb-0310-9956-ffa450edef68
1 parent e9915b2 commit fd9c416

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/ssl/ssl_engine_pphrase.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -831,15 +831,15 @@ static apr_status_t modssl_load_keypair_engine(server_rec *s, apr_pool_t *pconf,
831831

832832
c = ap_strchr_c(keyid, ':');
833833
if (!c || c == keyid) {
834-
ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s, APLOGNO(10131)
834+
ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, s, APLOGNO(10131)
835835
"Init: Unrecognized private key identifier `%s'",
836836
keyid);
837837
return APR_ENOTIMPL;
838838
}
839839

840840
scheme = apr_pstrmemdup(ptemp, keyid, c - keyid);
841841
if (!(e = ENGINE_by_id(scheme))) {
842-
ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s, APLOGNO(10132)
842+
ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, s, APLOGNO(10132)
843843
"Init: Failed to load engine for private key %s",
844844
keyid);
845845
ssl_log_ssl_error(SSLLOG_MARK, APLOG_NOTICE, s);

0 commit comments

Comments
 (0)