summaryrefslogtreecommitdiffstats
path: root/server/util_charset.c
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2000-08-07 21:26:02 +0200
committerJeff Trawick <trawick@apache.org>2000-08-07 21:26:02 +0200
commit99cf606197e0eb64fb89f3a9b2f5c7e539f854ac (patch)
tree52c89d99dbea2ef426436e9c22e1da6448ea7825 /server/util_charset.c
parentDocument util_script using ScanDoc (diff)
downloadapache2-99cf606197e0eb64fb89f3a9b2f5c7e539f854ac.tar.xz
apache2-99cf606197e0eb64fb89f3a9b2f5c7e539f854ac.zip
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_charset.c')
-rw-r--r--server/util_charset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/util_charset.c b/server/util_charset.c
index e284711c5c..edec8ad006 100644
--- a/server/util_charset.c
+++ b/server/util_charset.c
@@ -104,7 +104,7 @@ API_EXPORT(apr_status_t) ap_set_content_xlate(request_rec *r, int output,
if (output) {
r->rrx->to_net = xlate;
if (xlate) {
- ap_xlate_get_sb(r->rrx->to_net, &r->rrx->to_net_sb);
+ apr_xlate_get_sb(r->rrx->to_net, &r->rrx->to_net_sb);
}
rv = ap_bsetopt(r->connection->client, BO_WXLATE, &xlate);
}