svn commit: r1936366 - in httpd/httpd/trunk: docs/log-message-tags modules/metadata
[email protected] Mon, 20 Jul 2026 11:30:01 -0000
| Newsgroups | gmane.comp.apache.cvs |
|---|---|
| Message-ID | <178454700105.2729079.17172936066770314225@svn03-he-fi> |
Author: jorton
Date: Mon Jul 20 11:30:00 2026
New Revision: 1936366
Log:
Fill in APLOGNO() missed in r1936357.
Fixes: 7c6129b51935d9165241279637915eaf905c58f1
Modified:
httpd/httpd/trunk/docs/log-message-tags/next-number
httpd/httpd/trunk/modules/metadata/mod_remoteip.c
Modified: httpd/httpd/trunk/docs/log-message-tags/next-number
==============================================================================
--- httpd/httpd/trunk/docs/log-message-tags/next-number Mon Jul 20 11:02:13 2026 (r1936365)
+++ httpd/httpd/trunk/docs/log-message-tags/next-number Mon Jul 20 11:30:00 2026 (r1936366)
@@ -1 +1 @@
-10597
+10599
Modified: httpd/httpd/trunk/modules/metadata/mod_remoteip.c
==============================================================================
--- httpd/httpd/trunk/modules/metadata/mod_remoteip.c Mon Jul 20 11:02:13 2026 (r1936365)
+++ httpd/httpd/trunk/modules/metadata/mod_remoteip.c Mon Jul 20 11:30:00 2026 (r1936366)
@@ -963,7 +963,7 @@ static remoteip_parse_status_t remoteip_
switch (hdr->v2.fam) {
case 0x11: /* TCPv4 */
if (remoteip_get_v2_len(hdr) < sizeof(hdr->v2.addr.ip4)) {
- ap_log_cerror(APLOG_MARK, APLOG_ERR, 0, c, APLOGNO()
+ ap_log_cerror(APLOG_MARK, APLOG_ERR, 0, c, APLOGNO(10597)
"RemoteIPProxyProtocol: address length "
"%" APR_SIZE_T_FMT " too short for TCPv4",
remoteip_get_v2_len(hdr));
@@ -987,7 +987,7 @@ static remoteip_parse_status_t remoteip_
case 0x21: /* TCPv6 */
#if APR_HAVE_IPV6
if (remoteip_get_v2_len(hdr) < sizeof(hdr->v2.addr.ip6)) {
- ap_log_cerror(APLOG_MARK, APLOG_ERR, 0, c, APLOGNO()
+ ap_log_cerror(APLOG_MARK, APLOG_ERR, 0, c, APLOGNO(10598)
"RemoteIPProxyProtocol: address length "
"%" APR_SIZE_T_FMT " too short for TCPv6",
remoteip_get_v2_len(hdr));