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

Adding log tags where log tags are needed.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1887087 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stefan Eissing
2021-03-02 14:52:56 +00:00
parent 5dc01860db
commit cd1fa489d2
2 changed files with 3 additions and 3 deletions

View File

@@ -1 +1 @@
10264
10266

View File

@@ -2324,14 +2324,14 @@ static apr_status_t set_challenge_creds(conn_rec *c, const char *servername,
sslcon->service_unavailable = 1;
if (cert_file) {
if (SSL_use_certificate_chain_file(ssl, cert_file) < 1) {
ap_log_cerror(APLOG_MARK, APLOG_WARNING, 0, c, APLOGNO()
ap_log_cerror(APLOG_MARK, APLOG_WARNING, 0, c, APLOGNO(10264)
"Failed to configure challenge certificate %s",
servername);
return APR_EGENERAL;
}
if (key_file == NULL) key_file = cert_file;
if (SSL_use_PrivateKey_file(ssl, key_file, SSL_FILETYPE_PEM) < 1) {
ap_log_cerror(APLOG_MARK, APLOG_WARNING, 0, c, APLOGNO()
ap_log_cerror(APLOG_MARK, APLOG_WARNING, 0, c, APLOGNO(10265)
"Failed to configure challenge private key %s",
servername);
return APR_EGENERAL;