]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fill in APLOGNO() missed in r1936357.
authorJoe Orton <jorton@apache.org>
Mon, 20 Jul 2026 11:30:00 +0000 (11:30 +0000)
committerJoe Orton <jorton@apache.org>
Mon, 20 Jul 2026 11:30:00 +0000 (11:30 +0000)
Fixes: 7c6129b51935d9165241279637915eaf905c58f1
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1936366 13f79535-47bb-0310-9956-ffa450edef68

docs/log-message-tags/next-number
modules/metadata/mod_remoteip.c

index afde5353f30633b7af1ed4c552e36dbc3a00530e..f847eee1e1f1f7dff15f2d74daa74dc3f03836c9 100644 (file)
@@ -1 +1 @@
-10597
+10599
index 6b22225223e873372d1c44f1877f5d83c146012a..805c6543ea5b87b9a6c9f2e1c1600103500288c0 100644 (file)
@@ -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));