Loading CHANGES +4 −0 Original line number Diff line number Diff line Changes with Apache 2.0.22-dev *) Fix a cosmetic problem with mod_include. Non-existant SSI vars used to appear as '(none', without the closing paren. [Günter Knauf <eflash@gmx.net>] *) Improve the exports generating awk script. In the past, we had work around problems in the awk script by avoiding some #if and #ifdefs. This has bitten us many times in generating the exports.c Loading modules/filters/mod_include.c +1 −1 Original line number Diff line number Diff line Loading @@ -914,7 +914,7 @@ static int handle_echo(include_ctx_t *ctx, apr_bucket_brigade **bb, request_rec tmp_buck = apr_bucket_heap_create(echo_text, e_len, 1, &e_wrt); } else { tmp_buck = apr_bucket_immortal_create("(none)", sizeof("none")); tmp_buck = apr_bucket_immortal_create("(none)", sizeof("(none)")); } APR_BUCKET_INSERT_BEFORE(head_ptr, tmp_buck); if (*inserted_head == NULL) { Loading Loading
CHANGES +4 −0 Original line number Diff line number Diff line Changes with Apache 2.0.22-dev *) Fix a cosmetic problem with mod_include. Non-existant SSI vars used to appear as '(none', without the closing paren. [Günter Knauf <eflash@gmx.net>] *) Improve the exports generating awk script. In the past, we had work around problems in the awk script by avoiding some #if and #ifdefs. This has bitten us many times in generating the exports.c Loading
modules/filters/mod_include.c +1 −1 Original line number Diff line number Diff line Loading @@ -914,7 +914,7 @@ static int handle_echo(include_ctx_t *ctx, apr_bucket_brigade **bb, request_rec tmp_buck = apr_bucket_heap_create(echo_text, e_len, 1, &e_wrt); } else { tmp_buck = apr_bucket_immortal_create("(none)", sizeof("none")); tmp_buck = apr_bucket_immortal_create("(none)", sizeof("(none)")); } APR_BUCKET_INSERT_BEFORE(head_ptr, tmp_buck); if (*inserted_head == NULL) { Loading