From: Rainer Jung Date: Tue, 31 Mar 2015 19:09:12 +0000 (+0000) Subject: Followup to r1670397: add missing APLOGNO. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5ba175be4cc691f6631577b0689aca4b8674f9e;p=thirdparty%2Fapache%2Fhttpd.git Followup to r1670397: add missing APLOGNO. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1670432 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_engine_io.c b/modules/ssl/ssl_engine_io.c index 1480ee33864..bfff8303b51 100644 --- a/modules/ssl/ssl_engine_io.c +++ b/modules/ssl/ssl_engine_io.c @@ -1499,7 +1499,7 @@ static apr_status_t ssl_io_filter_input(ap_filter_t *f, if (sslconn->alpn_negofns) { SSL_get0_alpn_selected(inctx->ssl, &next_proto, &next_proto_len); ap_log_cerror(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, f->c, - APLOGNO() "SSL negotiated protocol: '%s'", + APLOGNO(02836) "SSL negotiated protocol: '%s'", (next_proto && next_proto_len)? apr_pstrmemdup(f->c->pool, (const char *)next_proto, next_proto_len) : "(null)");