diff options
author | Doug MacEachern <dougm@apache.org> | 2000-08-02 07:27:38 +0200 |
---|---|---|
committer | Doug MacEachern <dougm@apache.org> | 2000-08-02 07:27:38 +0200 |
commit | 059d8dd2122f0a3948c2c09549159f0931a6f236 (patch) | |
tree | 8a2937938ed4eec31f918c6c8401ce07012cd37a /server/util_charset.c | |
parent | Use the AP_INIT_TAKE23() macro to clean up a maintainer-mode warning, (diff) | |
download | apache2-059d8dd2122f0a3948c2c09549159f0931a6f236.tar.xz apache2-059d8dd2122f0a3948c2c09549159f0931a6f236.zip |
prefix libapr functions and types with apr_
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85976 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/util_charset.c')
-rw-r--r-- | server/util_charset.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/server/util_charset.c b/server/util_charset.c index b6bb0dfd83..e284711c5c 100644 --- a/server/util_charset.c +++ b/server/util_charset.c @@ -79,7 +79,7 @@ * translation is performed. */ -ap_xlate_t *ap_hdrs_to_ascii, *ap_hdrs_from_ascii; +apr_xlate_t *ap_hdrs_to_ascii, *ap_hdrs_from_ascii; /* ap_locale_to_ascii, ap_locale_from_ascii * @@ -94,12 +94,12 @@ ap_xlate_t *ap_hdrs_to_ascii, *ap_hdrs_from_ascii; * performed (unless a configuration module does something, of course). */ -ap_xlate_t *ap_locale_to_ascii, *ap_locale_from_ascii; +apr_xlate_t *ap_locale_to_ascii, *ap_locale_from_ascii; -API_EXPORT(ap_status_t) ap_set_content_xlate(request_rec *r, int output, - ap_xlate_t *xlate) +API_EXPORT(apr_status_t) ap_set_content_xlate(request_rec *r, int output, + apr_xlate_t *xlate) { - ap_status_t rv; + apr_status_t rv; if (output) { r->rrx->to_net = xlate; |