diff options
author | Jeff Trawick <trawick@apache.org> | 2000-08-07 19:26:02 +0000 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2000-08-07 19:26:02 +0000 |
commit | 99cf606197e0eb64fb89f3a9b2f5c7e539f854ac (patch) | |
tree | 52c89d99dbea2ef426436e9c22e1da6448ea7825 /server/util_ebcdic.c | |
parent | b921ee65b0a3a03a8b41ce900f76ef8d0dbf326b (diff) | |
download | httpd-99cf606197e0eb64fb89f3a9b2f5c7e539f854ac.tar.gz |
Fix some problems with the apr conversion so that APACHE_XLATE builds work
again.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86018 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/util_ebcdic.c')
-rw-r--r-- | server/util_ebcdic.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/server/util_ebcdic.c b/server/util_ebcdic.c index c642035f48..9ca292d87c 100644 --- a/server/util_ebcdic.c +++ b/server/util_ebcdic.c @@ -70,38 +70,38 @@ apr_status_t ap_init_ebcdic(apr_pool_t *pool) apr_status_t rv; char buf[80]; - rv = ap_xlate_open(&ap_hdrs_to_ascii, "ISO8859-1", APR_DEFAULT_CHARSET, pool); + rv = apr_xlate_open(&ap_hdrs_to_ascii, "ISO8859-1", APR_DEFAULT_CHARSET, pool); if (rv) { ap_log_error(APLOG_MARK, APLOG_ERR, rv, NULL, - "ap_xlate_open() failed"); + "apr_xlate_open() failed"); return rv; } - rv = ap_xlate_open(&ap_hdrs_from_ascii, APR_DEFAULT_CHARSET, "ISO8859-1", pool); + rv = apr_xlate_open(&ap_hdrs_from_ascii, APR_DEFAULT_CHARSET, "ISO8859-1", pool); if (rv) { ap_log_error(APLOG_MARK, APLOG_ERR, rv, NULL, - "ap_xlate_open() failed"); + "apr_xlate_open() failed"); return rv; } - rv = ap_xlate_open(&ap_locale_to_ascii, "ISO8859-1", APR_LOCALE_CHARSET, pool); + rv = apr_xlate_open(&ap_locale_to_ascii, "ISO8859-1", APR_LOCALE_CHARSET, pool); if (rv) { ap_log_error(APLOG_MARK, APLOG_ERR, rv, NULL, - "ap_xlate_open() failed"); + "apr_xlate_open() failed"); return rv; } - rv = ap_xlate_open(&ap_locale_from_ascii, APR_LOCALE_CHARSET, "ISO8859-1", pool); + rv = apr_xlate_open(&ap_locale_from_ascii, APR_LOCALE_CHARSET, "ISO8859-1", pool); if (rv) { ap_log_error(APLOG_MARK, APLOG_ERR, rv, NULL, - "ap_xlate_open() failed"); + "apr_xlate_open() failed"); return rv; } - rv = ap_MD5InitEBCDIC(ap_hdrs_to_ascii); + rv = apr_MD5InitEBCDIC(ap_hdrs_to_ascii); if (rv) { ap_log_error(APLOG_MARK, APLOG_ERR, rv, NULL, - "ap_MD5InitEBCDIC() failed"); + "apr_MD5InitEBCDIC() failed"); return rv; } |