From: Brian Pane Date: Thu, 28 Mar 2002 01:57:03 +0000 (+0000) Subject: Revert my last fix, which broke more things than it fixed X-Git-Tag: 2.0.34~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f7d0c040f66b2dee3a13e30a71b20855b66ea02;p=thirdparty%2Fapache%2Fhttpd.git Revert my last fix, which broke more things than it fixed git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94254 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/filters/mod_include.c b/modules/filters/mod_include.c index c17ca823f61..2e90e18ade0 100644 --- a/modules/filters/mod_include.c +++ b/modules/filters/mod_include.c @@ -957,10 +957,7 @@ static void ap_ssi_get_tag_and_value(include_ctx_t *ctx, char **tag, } *(c-shift_val) = '\0'; /* Overwrites delimiter (term or WS) with NULL. */ - if (*c) { - ++c; - } - ctx->curr_tag_pos = c; + ctx->curr_tag_pos = ++c; if (dodecode) { decodehtml(*tag_val); }