Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 44566 invoked from network); 29 Jun 2004 14:06:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 29 Jun 2004 14:06:16 -0000 Received: (qmail 28087 invoked by uid 500); 29 Jun 2004 14:06:18 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 27974 invoked by uid 500); 29 Jun 2004 14:06:17 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 27919 invoked by uid 500); 29 Jun 2004 14:06:15 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Received: (qmail 27903 invoked by uid 99); 29 Jun 2004 14:06:15 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.27.1) with SMTP; Tue, 29 Jun 2004 07:06:13 -0700 Received: (qmail 44512 invoked by uid 1086); 29 Jun 2004 14:06:08 -0000 Date: 29 Jun 2004 14:06:08 -0000 Message-ID: <20040629140608.44511.qmail@minotaur.apache.org> From: martin@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/modules/ssl ssl_engine_vars.c X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N martin 2004/06/29 07:06:08 Modified: modules/ssl ssl_engine_vars.c Log: Use the correct Apache-2.x EBCDIC conversion function (not the old apache-1.3 routine) Revision Changes Path 1.42 +3 -4 httpd-2.0/modules/ssl/ssl_engine_vars.c Index: ssl_engine_vars.c =================================================================== RCS file: /home/cvs/httpd-2.0/modules/ssl/ssl_engine_vars.c,v retrieving revision 1.41 retrieving revision 1.42 diff -u -u -r1.41 -r1.42 --- ssl_engine_vars.c 4 Mar 2004 20:44:13 -0000 1.41 +++ ssl_engine_vars.c 29 Jun 2004 14:06:08 -0000 1.42 @@ -420,10 +420,9 @@ result = apr_pstrmemdup(p, X509_NAME_ENTRY_get_data_ptr(xsne), X509_NAME_ENTRY_get_data_len(xsne)); -#ifdef CHARSET_EBCDIC - ascii2ebcdic(result, result, - X509_NAME_ENTRY_get_data_len(xsne)); -#endif /* CHARSET_EBCDIC */ +#if APR_CHARSET_EBCDIC + ap_xlate_proto_from_ascii(result, data_len); +#endif /* APR_CHARSET_EBCDIC */ break; } }