From: Christophe Jaillet Date: Sat, 2 Apr 2016 08:53:35 +0000 (+0000) Subject: Add the syntax. X-Git-Tag: 2.5.0-alpha~1790 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5f80e6987caa93c3d050a80af55d4348a443a7c2;p=thirdparty%2Fapache%2Fhttpd.git Add the syntax. Idea from Rob. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1737476 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 480941c61ab..9d4232fb387 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,9 @@ -*- coding: utf-8 -*- Changes with Apache 2.5.0 + *) mod_include: add the +
The config Element

This command controls various aspects of the parsing. The valid attributes are:

diff --git a/modules/filters/mod_include.c b/modules/filters/mod_include.c index e73b762f94b..6bd85e7fe0d 100644 --- a/modules/filters/mod_include.c +++ b/modules/filters/mod_include.c @@ -1763,6 +1763,15 @@ static int find_file(request_rec *r, const char *directive, const char *tag, } } +/* + * + */ +static apr_status_t handle_comment(include_ctx_t *ctx, ap_filter_t *f, + apr_bucket_brigade *bb) +{ + return APR_SUCCESS; +} + /* * * @@ -4161,6 +4170,7 @@ static int include_post_config(apr_pool_t *p, apr_pool_t *plog, ssi_pfn_register("endif", handle_endif); ssi_pfn_register("fsize", handle_fsize); ssi_pfn_register("config", handle_config); + ssi_pfn_register("comment", handle_comment); ssi_pfn_register("include", handle_include); ssi_pfn_register("flastmod", handle_flastmod); ssi_pfn_register("printenv", handle_printenv);