diff options
author | Joe Orton <jorton@apache.org> | 2024-10-01 18:26:17 +0200 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2024-10-01 18:26:17 +0200 |
commit | fd9c4164c4970a5eac8e915d75f188309d1897ed (patch) | |
tree | 0c2980679fc8eef5b07042f789757063bfce449b /modules | |
parent | mod_ssl: Add SSLClientHelloVars directive which exposes various (diff) | |
download | apache2-fd9c4164c4970a5eac8e915d75f188309d1897ed.tar.xz apache2-fd9c4164c4970a5eac8e915d75f188309d1897ed.zip |
* 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
Diffstat (limited to 'modules')
-rw-r--r-- | modules/ssl/ssl_engine_pphrase.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ssl/ssl_engine_pphrase.c b/modules/ssl/ssl_engine_pphrase.c index 5cfc305691..773c4660eb 100644 --- a/modules/ssl/ssl_engine_pphrase.c +++ b/modules/ssl/ssl_engine_pphrase.c @@ -831,7 +831,7 @@ static apr_status_t modssl_load_keypair_engine(server_rec *s, apr_pool_t *pconf, c = ap_strchr_c(keyid, ':'); if (!c || c == keyid) { - ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s, APLOGNO(10131) + ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, s, APLOGNO(10131) "Init: Unrecognized private key identifier `%s'", keyid); return APR_ENOTIMPL; @@ -839,7 +839,7 @@ static apr_status_t modssl_load_keypair_engine(server_rec *s, apr_pool_t *pconf, scheme = apr_pstrmemdup(ptemp, keyid, c - keyid); if (!(e = ENGINE_by_id(scheme))) { - ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s, APLOGNO(10132) + ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, s, APLOGNO(10132) "Init: Failed to load engine for private key %s", keyid); ssl_log_ssl_error(SSLLOG_MARK, APLOG_NOTICE, s); |