summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Kraemer <martin@apache.org>2004-06-29 15:46:54 +0200
committerMartin Kraemer <martin@apache.org>2004-06-29 15:46:54 +0200
commitea2cedde8cd23ff2c5bf077d4e9b9b5051d63241 (patch)
treeb76e56db82609cb7b8e811994cae547335fb24c1
parentUse standardized names for ISO-8859-1, see http://www.iana.org/assignments/ch... (diff)
downloadapache2-ea2cedde8cd23ff2c5bf077d4e9b9b5051d63241.tar.xz
apache2-ea2cedde8cd23ff2c5bf077d4e9b9b5051d63241.zip
Proxy requests are not converted by us. They should be cached and delivered bit-identical
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104079 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--modules/experimental/mod_charset_lite.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/experimental/mod_charset_lite.c b/modules/experimental/mod_charset_lite.c
index a2de2cd493..08440557ee 100644
--- a/modules/experimental/mod_charset_lite.c
+++ b/modules/experimental/mod_charset_lite.c
@@ -820,6 +820,9 @@ static apr_status_t xlate_out_filter(ap_filter_t *f, apr_bucket_brigade *bb)
}
}
+ /* catch proxy requests */
+ if (f->r->proxyreq) return DECLINED;
+
/* Opening the output translation (this used to be done in the fixup hook,
* but that was too early: a subsequent type modification, e.g., by a
* CGI script, would go unnoticed. Now we do it in the filter itself.)