]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* modules/ssl/ssl_engine_pphrase.c (modssl_load_keypair_engine):
authorJoe Orton <jorton@apache.org>
Tue, 1 Oct 2024 16:26:17 +0000 (16:26 +0000)
committerJoe Orton <jorton@apache.org>
Tue, 1 Oct 2024 16:26:17 +0000 (16:26 +0000)
  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

modules/ssl/ssl_engine_pphrase.c

index 5cfc30569105ed64f126ee8016533d061e15de8b..773c4660eb868dfc8df0b76cfa59c6c49b5b4b99 100644 (file)
@@ -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);