diff options
author | Jim Jagielski <jim@apache.org> | 2004-12-14 17:08:55 +0100 |
---|---|---|
committer | Jim Jagielski <jim@apache.org> | 2004-12-14 17:08:55 +0100 |
commit | 0fb2f37f3eeb1a57a8ec037352d6f04d6d492cb1 (patch) | |
tree | 9d4bebcec1a6b2bfe2737ca06e4c91e61722d665 /modules/proxy/proxy_http.c | |
parent | Make proxy address cache thread safe and available only (diff) | |
download | apache2-0fb2f37f3eeb1a57a8ec037352d6f04d6d492cb1.tar.xz apache2-0fb2f37f3eeb1a57a8ec037352d6f04d6d492cb1.zip |
grammatical parameter change... "readed" -> "read"
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@111830 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | modules/proxy/proxy_http.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/proxy/proxy_http.c b/modules/proxy/proxy_http.c index 8200c8f1ca..46bc741ccf 100644 --- a/modules/proxy/proxy_http.c +++ b/modules/proxy/proxy_http.c @@ -826,7 +826,7 @@ apr_status_t ap_proxy_http_process_response(apr_pool_t * p, request_rec *r, "Error reading from remote server"); } /* XXX: Is this a real headers length send from remote? */ - backend->worker->s->readed += len; + backend->worker->s->read += len; /* Is it an HTTP/1 response? * This is buggy if we ever see an HTTP/1.10 @@ -1057,7 +1057,7 @@ apr_status_t ap_proxy_http_process_response(apr_pool_t * p, request_rec *r, mode = APR_NONBLOCK_READ; apr_brigade_length(bb, 0, &readbytes); - backend->worker->s->readed += readbytes; + backend->worker->s->read += readbytes; #if DEBUGGING { ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, |