1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Consistently use loglevel emerg before ssl_die()

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1026903 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stefan Fritsch
2010-10-24 21:57:08 +00:00
parent 52210adbd1
commit d658afdd1c
5 changed files with 51 additions and 49 deletions

View File

@@ -67,7 +67,8 @@ void ssl_scache_init(server_rec *s, apr_pool_t *p)
rv = mc->stapling_cache->init(mc->stapling_cache_context,
"mod_ssl-stapling", &hints, s, p);
if (rv) {
/* ABORT ABORT etc. */
ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s,
"Could not initialize stapling cache. Exiting.");
ssl_die();
}
}
@@ -91,7 +92,8 @@ void ssl_scache_init(server_rec *s, apr_pool_t *p)
rv = mc->sesscache->init(mc->sesscache_context, "mod_ssl-session", &hints, s, p);
if (rv) {
/* ABORT ABORT etc. */
ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s,
"Could not initialize session cache. Exiting.");
ssl_die();
}
}