From 5eba95eca5a54e9c1689c2c09be0f2e01a4b12ac Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Mon, 31 Dec 2001 06:47:28 +0000 Subject: [PATCH] Saw this bug several hours ago, but it slipped my mind. We no longer skip over the leading '/' character, since the token_re already strips the / delimiters. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92683 13f79535-47bb-0310-9956-ffa450edef68 --- modules/filters/mod_include.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/filters/mod_include.c b/modules/filters/mod_include.c index d71c2283ef..d08ac001ca 100644 --- a/modules/filters/mod_include.c +++ b/modules/filters/mod_include.c @@ -2223,11 +2223,11 @@ static int parse_expr(request_rec *r, include_ctx_t *ctx, const char *expr, debug_pos += sprintf (&debug[debug_pos], " Re Compare (%s) with /%s/\n", current->left->token.value, - ¤t->right->token.value[1]); + current->right->token.value); #endif current->value = re_check(r, ctx, current->left->token.value, - ¤t->right->token.value[1]); + current->right->token.value); } else { #ifdef DEBUG_INCLUDE -- 2.40.0