You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rj...@apache.org on 2015/03/31 21:09:12 UTC

svn commit: r1670432 - /httpd/httpd/trunk/modules/ssl/ssl_engine_io.c

Author: rjung
Date: Tue Mar 31 19:09:12 2015
New Revision: 1670432

URL: http://svn.apache.org/r1670432
Log:
Followup to r1670397: add missing APLOGNO.

Modified:
    httpd/httpd/trunk/modules/ssl/ssl_engine_io.c

Modified: httpd/httpd/trunk/modules/ssl/ssl_engine_io.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ssl/ssl_engine_io.c?rev=1670432&r1=1670431&r2=1670432&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_engine_io.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_io.c Tue Mar 31 19:09:12 2015
@@ -1499,7 +1499,7 @@ static apr_status_t ssl_io_filter_input(
         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)");