diff options
author | Stefan Eissing <icing@apache.org> | 2021-06-11 13:40:38 +0200 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2021-06-11 13:40:38 +0200 |
commit | 121e0a7f2528e5d0bb97e67ae4efa65857f77e9d (patch) | |
tree | 223c16f64d75c24965fd754802ddd4a78aede50d /modules/ssl/ssl_engine_io.c | |
parent | *) mod_ssl: tighten the handling of ALPN for outgoing (proxy) (diff) | |
download | apache2-121e0a7f2528e5d0bb97e67ae4efa65857f77e9d.tar.xz apache2-121e0a7f2528e5d0bb97e67ae4efa65857f77e9d.zip |
* log-tags always win.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1890696 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/ssl/ssl_engine_io.c')
-rw-r--r-- | modules/ssl/ssl_engine_io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ssl/ssl_engine_io.c b/modules/ssl/ssl_engine_io.c index ab190ec869..348956079a 100644 --- a/modules/ssl/ssl_engine_io.c +++ b/modules/ssl/ssl_engine_io.c @@ -1419,7 +1419,7 @@ static apr_status_t ssl_io_filter_handshake(ssl_filter_ctx_t *filter_ctx) * it does not support ALPN (old server) or that it does not support * any of our proposals (Apache itself up to 2.4.48 at least did that). */ if (!alpn_empty_ok) { - ap_log_cerror(APLOG_MARK, APLOG_INFO, 0, c, APLOGNO() + ap_log_cerror(APLOG_MARK, APLOG_INFO, 0, c, APLOGNO(10273) "SSL Proxy: Peer did not select any of our ALPN protocols [%s].", alpn_note); proxy_ssl_check_peer_ok = FALSE; @@ -1436,7 +1436,7 @@ static apr_status_t ssl_io_filter_handshake(ssl_filter_ctx_t *filter_ctx) /* From a conforming peer, this should never happen, * but life always finds a way... */ proto = apr_pstrndup(c->pool, selected, slen); - ap_log_cerror(APLOG_MARK, APLOG_INFO, 0, c, APLOGNO() + ap_log_cerror(APLOG_MARK, APLOG_INFO, 0, c, APLOGNO(10274) "SSL Proxy: Peer proposed ALPN protocol %s which is none " "of our proposals [%s].", proto, alpn_note); proxy_ssl_check_peer_ok = FALSE; |