From 15facfd9c996c361eb958b7b33b2aa3cbaabf79a Mon Sep 17 00:00:00 2001 From: Yann Ylavic Date: Fri, 20 Apr 2018 13:55:43 +0000 Subject: [PATCH] mod_proxy_http: follow up to r1829573: remain EBCDIC friendly. Keep using ap_rgetline() as before r1829573, since ap_rgetline_core() is EBCDIC agnostic. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1829657 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/mod_proxy_http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/proxy/mod_proxy_http.c b/modules/proxy/mod_proxy_http.c index 890aab95b7..77ca3e3a71 100644 --- a/modules/proxy/mod_proxy_http.c +++ b/modules/proxy/mod_proxy_http.c @@ -1221,7 +1221,7 @@ static apr_status_t ap_proxygetline(apr_bucket_brigade *bb, char *s, int n, apr_status_t rv; apr_size_t len; - rv = ap_rgetline_core(&s, n, &len, r, flags, bb); + rv = ap_rgetline(&s, n, &len, r, flags, bb); apr_brigade_cleanup(bb); if (rv == APR_SUCCESS || APR_STATUS_IS_ENOSPC(rv)) { -- 2.40.0