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:
@@ -287,7 +287,7 @@ STACK_OF(X509) *ssl_read_pkcs7(server_rec *s, const char *pkcs7)
|
||||
|
||||
f = fopen(pkcs7, "r");
|
||||
if (!f) {
|
||||
ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, "Can't open %s", pkcs7);
|
||||
ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s, "Can't open %s", pkcs7);
|
||||
ssl_die();
|
||||
}
|
||||
|
||||
@@ -313,13 +313,13 @@ STACK_OF(X509) *ssl_read_pkcs7(server_rec *s, const char *pkcs7)
|
||||
break;
|
||||
|
||||
default:
|
||||
ap_log_error(APLOG_MARK, APLOG_CRIT|APLOG_NOERRNO, 0, s,
|
||||
ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s,
|
||||
"Don't understand PKCS7 file %s", pkcs7);
|
||||
ssl_die();
|
||||
}
|
||||
|
||||
if (!certs) {
|
||||
ap_log_error(APLOG_MARK, APLOG_CRIT|APLOG_NOERRNO, 0, s,
|
||||
ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s,
|
||||
"No certificates in %s", pkcs7);
|
||||
ssl_die();
|
||||
}
|
||||
|
Reference in New Issue
Block a user