summaryrefslogtreecommitdiff
path: root/modules/http2/mod_http2.c
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2022-04-19 10:36:53 +0000
committerStefan Eissing <icing@apache.org>2022-04-19 10:36:53 +0000
commitb737bb84684852feb8e1e0c872a54198e91e93cd (patch)
treed1e83af1a3ba46497d53b3fb627facdaf1b669d3 /modules/http2/mod_http2.c
parent887ffec71205571029636c4b6e6df933625ee3c0 (diff)
downloadhttpd-b737bb84684852feb8e1e0c872a54198e91e93cd.tar.gz
*) mod_http2: using new session ids also in logging for connection
contexts and bucket beams. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1900031 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/mod_http2.c')
-rw-r--r--modules/http2/mod_http2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http2/mod_http2.c b/modules/http2/mod_http2.c
index 4aa5155d77..36acc432f9 100644
--- a/modules/http2/mod_http2.c
+++ b/modules/http2/mod_http2.c
@@ -278,7 +278,7 @@ static const char *val_H2_STREAM_ID(apr_pool_t *p, server_rec *s,
conn_rec *c, request_rec *r, h2_conn_ctx_t *ctx)
{
const char *cp = val_H2_STREAM_TAG(p, s, c, r, ctx);
- if (cp && (cp = ap_strchr_c(cp, '-'))) {
+ if (cp && (cp = ap_strrchr_c(cp, '-'))) {
return ++cp;
}
return NULL;