diff options
author | Jeff Trawick <trawick@apache.org> | 2006-05-26 20:03:01 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2006-05-26 20:03:01 +0200 |
commit | 3c4c74840d9c67762e5d3b3fd73e702c540eb7ea (patch) | |
tree | f1de369fed95ee211d50d82259b664dd5845d433 /modules/proxy/ajp_msg.c | |
parent | Make the worker and event MPMs not touch the scoreboard when (diff) | |
download | apache2-3c4c74840d9c67762e5d3b3fd73e702c540eb7ea.tar.xz apache2-3c4c74840d9c67762e5d3b3fd73e702c540eb7ea.zip |
small cleanup of EBCDIC support in mod_proxy_ajp
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@409709 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/proxy/ajp_msg.c')
-rw-r--r-- | modules/proxy/ajp_msg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/proxy/ajp_msg.c b/modules/proxy/ajp_msg.c index 0408776e20..6281bc01c6 100644 --- a/modules/proxy/ajp_msg.c +++ b/modules/proxy/ajp_msg.c @@ -289,7 +289,7 @@ apr_status_t ajp_msg_append_string_ex(ajp_msg_t *msg, const char *value, memcpy(msg->buf + msg->len, value, len + 1); /* including \0 */ if (convert) /* convert from EBCDIC if needed */ - ajp_xlate_to_ascii((char *)msg->buf + msg->len, len + 1); + ap_xlate_proto_to_ascii((char *)msg->buf + msg->len, len + 1); msg->len += len + 1; |