mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
mod_proxy: add missing APLOGNO()s.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1732954 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -1 +1 @@
|
|||||||
3306
|
3309
|
||||||
|
@@ -3781,7 +3781,7 @@ PROXY_DECLARE(apr_status_t) ap_proxy_transfer_between_connections(
|
|||||||
#ifdef DEBUGGING
|
#ifdef DEBUGGING
|
||||||
len = -1;
|
len = -1;
|
||||||
apr_brigade_length(bb_i, 0, &len);
|
apr_brigade_length(bb_i, 0, &len);
|
||||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO()
|
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(03306)
|
||||||
"ap_proxy_transfer_between_connections: "
|
"ap_proxy_transfer_between_connections: "
|
||||||
"read %" APR_OFF_T_FMT
|
"read %" APR_OFF_T_FMT
|
||||||
" bytes from %s", len, name);
|
" bytes from %s", len, name);
|
||||||
@@ -3808,13 +3808,13 @@ PROXY_DECLARE(apr_status_t) ap_proxy_transfer_between_connections(
|
|||||||
}
|
}
|
||||||
rv = ap_pass_brigade(c_o->output_filters, bb_o);
|
rv = ap_pass_brigade(c_o->output_filters, bb_o);
|
||||||
if (rv != APR_SUCCESS) {
|
if (rv != APR_SUCCESS) {
|
||||||
ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, APLOGNO()
|
ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, APLOGNO(03307)
|
||||||
"ap_proxy_transfer_between_connections: "
|
"ap_proxy_transfer_between_connections: "
|
||||||
"error on %s - ap_pass_brigade",
|
"error on %s - ap_pass_brigade",
|
||||||
name);
|
name);
|
||||||
}
|
}
|
||||||
} else if (!APR_STATUS_IS_EAGAIN(rv) && !APR_STATUS_IS_EOF(rv)) {
|
} else if (!APR_STATUS_IS_EAGAIN(rv) && !APR_STATUS_IS_EOF(rv)) {
|
||||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, rv, r, APLOGNO()
|
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, rv, r, APLOGNO(03308)
|
||||||
"ap_proxy_transfer_between_connections: "
|
"ap_proxy_transfer_between_connections: "
|
||||||
"error on %s - ap_get_brigade",
|
"error on %s - ap_get_brigade",
|
||||||
name);
|
name);
|
||||||
|
Reference in New Issue
Block a user