mirror of
https://github.com/apache/httpd.git
synced 2025-08-07 04:02:58 +03:00
Get rid of much of the old implementation of translating the
charset of response bodies. ap_checkconv() is removed, except for in os/bs2000 and os/tpf. (Anything there is questionable for 2.0 anyway.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86400 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -983,19 +983,7 @@ API_EXPORT(int) ap_run_sub_req(request_rec *r)
|
||||
|
||||
/* see comments in process_request_internal() */
|
||||
ap_run_insert_filter(r);
|
||||
|
||||
#ifndef APACHE_XLATE
|
||||
retval = ap_invoke_handler(r);
|
||||
#else /*APACHE_XLATE*/
|
||||
{
|
||||
/* Save the output conversion setting across subrequests */
|
||||
apr_xlate_t *saved_xlate;
|
||||
|
||||
ap_bgetopt(r->connection->client, BO_WXLATE, &saved_xlate);
|
||||
retval = ap_invoke_handler(r);
|
||||
ap_bsetopt(r->connection->client, BO_WXLATE, &saved_xlate);
|
||||
}
|
||||
#endif /*APACHE_XLATE*/
|
||||
ap_finalize_sub_req_protocol(r);
|
||||
return retval;
|
||||
}
|
||||
|
Reference in New Issue
Block a user