1
0
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:
Jeff Trawick
2000-10-05 11:21:26 +00:00
parent 8d4c54143f
commit bf7aaebda6
7 changed files with 7 additions and 118 deletions

View File

@@ -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;
}