]> granicus.if.org Git - apache/commitdiff
mod_proxy_http: follow up to r1829573: remain EBCDIC friendly.
authorYann Ylavic <ylavic@apache.org>
Fri, 20 Apr 2018 13:55:43 +0000 (13:55 +0000)
committerYann Ylavic <ylavic@apache.org>
Fri, 20 Apr 2018 13:55:43 +0000 (13:55 +0000)
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

index 890aab95b7a17dd1824d78c1c7ce34f848ea39c5..77ca3e3a7126c65ea240320dd2e04b98c5e752c0 100644 (file)
@@ -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)) {