[EMAIL PROTECTED] wrote:
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)

-#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 */

no need to wrap this inside APR_CHARSET_EBCDIC; if no conversion necessary, ap_xlate_proto_from_ascii is no-op macro




Reply via email to