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

* modules/ssl/ssl_engine_init.c (ssl_init_Engine): Log the OpenSSL

error stack contents if engine load/init fails.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102857 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Joe Orton
2004-03-04 22:00:25 +00:00
parent f205725d2e
commit 1c5889d105

View File

@@ -323,6 +323,7 @@ void ssl_init_Engine(server_rec *s, apr_pool_t *p)
ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, ap_log_error(APLOG_MARK, APLOG_ERR, 0, s,
"Init: Failed to load Crypto Device API `%s'", "Init: Failed to load Crypto Device API `%s'",
mc->szCryptoDevice); mc->szCryptoDevice);
ssl_log_ssl_error(APLOG_MARK, APLOG_ERR, s);
ssl_die(); ssl_die();
} }
@@ -334,6 +335,7 @@ void ssl_init_Engine(server_rec *s, apr_pool_t *p)
ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, ap_log_error(APLOG_MARK, APLOG_ERR, 0, s,
"Init: Failed to enable Crypto Device API `%s'", "Init: Failed to enable Crypto Device API `%s'",
mc->szCryptoDevice); mc->szCryptoDevice);
ssl_log_ssl_error(APLOG_MARK, APLOG_ERR, s);
ssl_die(); ssl_die();
} }