You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2016/02/29 22:57:07 UTC

svn commit: r1732955 - in /httpd/httpd/trunk: docs/log-message-tags/next-number modules/ssl/ssl_engine_io.c

Author: ylavic
Date: Mon Feb 29 21:57:07 2016
New Revision: 1732955

URL: http://svn.apache.org/viewvc?rev=1732955&view=rev
Log:
mod_ssl: add missing APLOGNO()s.

Modified:
    httpd/httpd/trunk/docs/log-message-tags/next-number
    httpd/httpd/trunk/modules/ssl/ssl_engine_io.c

Modified: httpd/httpd/trunk/docs/log-message-tags/next-number
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/log-message-tags/next-number?rev=1732955&r1=1732954&r2=1732955&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/log-message-tags/next-number (original)
+++ httpd/httpd/trunk/docs/log-message-tags/next-number Mon Feb 29 21:57:07 2016
@@ -1 +1 @@
-3309
+3311

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=1732955&r1=1732954&r2=1732955&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_engine_io.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_io.c Mon Feb 29 21:57:07 2016
@@ -1166,7 +1166,7 @@ static apr_status_t ssl_io_filter_handsh
             while ((p = apr_strtok(p, ", ", &last))) {
                 len = last - p - (*last? 1 : 0); 
                 if (len > 255) {
-                    ap_log_cerror(APLOG_MARK, APLOG_ERR, 0, c, APLOGNO()
+                    ap_log_cerror(APLOG_MARK, APLOG_ERR, 0, c, APLOGNO(03309)
                                   "ALPN proxy protocol identifier too long: %s",
                                   p);
                     ssl_log_ssl_error(SSLLOG_MARK, APLOG_ERR, server);
@@ -1184,7 +1184,7 @@ static apr_status_t ssl_io_filter_handsh
             if (protos != s && SSL_set_alpn_protos(filter_ctx->pssl, 
                                                    (unsigned char *)protos, 
                                                    s - protos)) {
-                ap_log_cerror(APLOG_MARK, APLOG_WARNING, 0, c, APLOGNO()
+                ap_log_cerror(APLOG_MARK, APLOG_WARNING, 0, c, APLOGNO(03310)
                               "error setting alpn protos from '%s'", alpn_note);
                 ssl_log_ssl_error(SSLLOG_MARK, APLOG_WARNING, server);
             }