Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 12523 invoked by uid 500); 22 Aug 2000 18:01:59 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk X-No-Archive: yes Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 12431 invoked by uid 500); 22 Aug 2000 18:01:55 -0000 Delivered-To: apmail-apache-2.0-cvs@apache.org Date: 22 Aug 2000 18:01:53 -0000 Message-ID: <20000822180153.12376.qmail@locus.apache.org> From: trawick@locus.apache.org To: apache-2.0-cvs@apache.org Subject: cvs commit: apache-2.0/src/main http_protocol.c http_request.c trawick 00/08/22 11:01:52 Modified: src/main http_protocol.c http_request.c Log: Fix charset translation breakage on EBCDIC machines... the core turned on buff's translation by default, but mod_charset_lite (when configured to do so) turned on its own filter-based translation, resulting in gibberish. To be determined... whether or not mod_charset_lite should enable translation of text objects by default (a la 1.3)... probably... for now you have to tell mod_charset_lite to translate. Revision Changes Path 1.114 +0 -1 apache-2.0/src/main/http_protocol.c Index: http_protocol.c =================================================================== RCS file: /home/cvs/apache-2.0/src/main/http_protocol.c,v retrieving revision 1.113 retrieving revision 1.114 diff -u -r1.113 -r1.114 --- http_protocol.c 2000/08/19 06:04:57 1.113 +++ http_protocol.c 2000/08/22 18:01:46 1.114 @@ -1176,7 +1176,6 @@ #ifdef APACHE_XLATE r->rrx = apr_pcalloc(p, sizeof(struct ap_rr_xlate)); - ap_set_content_xlate(r, 1, ap_locale_to_ascii); ap_set_content_xlate(r, 0, ap_locale_from_ascii); #endif /*APACHE_XLATE*/ 1.44 +0 -1 apache-2.0/src/main/http_request.c Index: http_request.c =================================================================== RCS file: /home/cvs/apache-2.0/src/main/http_request.c,v retrieving revision 1.43 retrieving revision 1.44 diff -u -r1.43 -r1.44 --- http_request.c 2000/08/12 18:45:35 1.43 +++ http_request.c 2000/08/22 18:01:47 1.44 @@ -1388,7 +1388,6 @@ #ifdef APACHE_XLATE new->rrx = apr_pcalloc(new->pool, sizeof(struct ap_rr_xlate)); - ap_set_content_xlate(new, 1, ap_locale_to_ascii); ap_set_content_xlate(new, 0, ap_locale_from_ascii); #endif /*APACHE_XLATE*/