From: Joe Orton Date: Mon, 20 Jul 2026 11:30:00 +0000 (+0000) Subject: Fill in APLOGNO() missed in r1936357. X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=f6c2694cc25eee683f01f13e47e065fe577a06c8;p=thirdparty%2Fapache%2Fhttpd.git Fill in APLOGNO() missed in r1936357. Fixes: 7c6129b51935d9165241279637915eaf905c58f1 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1936366 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/log-message-tags/next-number b/docs/log-message-tags/next-number index afde5353f3..f847eee1e1 100644 --- a/docs/log-message-tags/next-number +++ b/docs/log-message-tags/next-number @@ -1 +1 @@ -10597 +10599 diff --git a/modules/metadata/mod_remoteip.c b/modules/metadata/mod_remoteip.c index 6b22225223..805c6543ea 100644 --- a/modules/metadata/mod_remoteip.c +++ b/modules/metadata/mod_remoteip.c @@ -963,7 +963,7 @@ static remoteip_parse_status_t remoteip_process_v2_header(conn_rec *c, 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_process_v2_header(conn_rec *c, 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));