From: William A. Rowe Jr Date: Mon, 31 Dec 2001 06:47:28 +0000 (+0000) Subject: Saw this bug several hours ago, but it slipped my mind. We no longer X-Git-Tag: 2.0.30~61 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5eba95eca5a54e9c1689c2c09be0f2e01a4b12ac;p=apache 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 --- 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