]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
mod_ext_filter: Set additional environment variables for use by
authorJustin Erenkrantz <jerenkrantz@apache.org>
Mon, 28 Jul 2003 01:54:17 +0000 (01:54 +0000)
committerJustin Erenkrantz <jerenkrantz@apache.org>
Mon, 28 Jul 2003 01:54:17 +0000 (01:54 +0000)
the external filter.

The missing code was identified by Andrew Ho, coded/tested by Jeff
Trawick, and verified yet again by Neil Fraser.

PR:    20944
Reviewed by: Andre Malo, Justin Erenkrantz

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@100803 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/filters/mod_ext_filter.c

diff --git a/CHANGES b/CHANGES
index d584253b9aeffb8c0c66e215a0fa5a9d010f1b0f..ccccedc255dd571225962e84e93f8c2832740419 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,8 @@
 Changes with Apache 2.0.48
 
+  *) mod_ext_filter: Set additional environment variables for use by
+     the external filter.  PR 20944.  [Andrew Ho, Jeff Trawick]
+
   *) Fix buildconf errors when libtool version changes.  [Jeff Trawick]
 
   *) Remember an authenticated user during internal redirects if the
index 6031cd45a8b6f65bda715ca82e9d85fc9b77414c..c0a018dc79c5ff03e19007f5492fdccf1a976575 100644 (file)
@@ -478,6 +478,7 @@ static apr_status_t init_ext_filter_process(ap_filter_t *f)
      * and QUERY_STRING_UNESCAPED
      */
     ap_add_cgi_vars(f->r);
+    ap_add_common_vars(f->r);
     apr_table_setn(f->r->subprocess_env, "DOCUMENT_URI", f->r->uri);
     apr_table_setn(f->r->subprocess_env, "DOCUMENT_PATH_INFO", f->r->path_info);
     if (f->r->args) {