summaryrefslogtreecommitdiffstats
path: root/modules/proxy
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2018-04-22 17:58:18 +0200
committerYann Ylavic <ylavic@apache.org>2018-04-22 17:58:18 +0200
commitfab86dcf0e4c71262bbb5796830865c33f1f00e3 (patch)
tree0f1b1b690ed6a5ce6fe98e4c465526c44b78f53f /modules/proxy
parentFollow up to r1829659, ap_[f]getline() EBCDIC awareness. (diff)
downloadapache2-fab86dcf0e4c71262bbb5796830865c33f1f00e3.tar.xz
apache2-fab86dcf0e4c71262bbb5796830865c33f1f00e3.zip
Axe ap_rgetline_core(), not used anymore.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1829790 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/proxy')
-rw-r--r--modules/proxy/mod_proxy_http.c2
-rw-r--r--modules/proxy/mod_proxy_uwsgi.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/proxy/mod_proxy_http.c b/modules/proxy/mod_proxy_http.c
index 77ca3e3a71..0a84968bcc 100644
--- a/modules/proxy/mod_proxy_http.c
+++ b/modules/proxy/mod_proxy_http.c
@@ -1431,7 +1431,7 @@ int ap_proxy_http_process_response(apr_pool_t * p, request_rec *r,
buffer[12] = keepchar;
} else {
/* 2616 requires the space in Status-Line; the origin
- * server may have sent one but ap_rgetline_core will
+ * server may have sent one but ap_rgetline will
* have stripped it. */
buffer[12] = ' ';
buffer[13] = '\0';
diff --git a/modules/proxy/mod_proxy_uwsgi.c b/modules/proxy/mod_proxy_uwsgi.c
index bc7e7f9414..3e04fdeb38 100644
--- a/modules/proxy/mod_proxy_uwsgi.c
+++ b/modules/proxy/mod_proxy_uwsgi.c
@@ -331,7 +331,7 @@ static int uwsgi_response(request_rec *r, proxy_conn_rec * backend,
}
else {
/* 2616 requires the space in Status-Line; the origin
- * server may have sent one but ap_rgetline_core will
+ * server may have sent one but ap_rgetline will
* have stripped it. */
buffer[status_end] = ' ';
buffer[status_end + 1] = '\0';