mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
mod_proxy: add missing APLOGNOs.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1619455 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -1 +1 @@
|
|||||||
2806
|
2808
|
||||||
|
@@ -3250,7 +3250,7 @@ static int ap_proxy_clear_connection(request_rec *r, apr_table_t *headers)
|
|||||||
apr_table_unset(headers, "Connection");
|
apr_table_unset(headers, "Connection");
|
||||||
|
|
||||||
if (x.error) {
|
if (x.error) {
|
||||||
ap_log_rerror(APLOG_MARK, APLOG_NOTICE, 0, r, APLOGNO()
|
ap_log_rerror(APLOG_MARK, APLOG_NOTICE, 0, r, APLOGNO(02806)
|
||||||
"Error parsing Connection header: %s", x.error);
|
"Error parsing Connection header: %s", x.error);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
@@ -3259,7 +3259,7 @@ static int ap_proxy_clear_connection(request_rec *r, apr_table_t *headers)
|
|||||||
int i;
|
int i;
|
||||||
for (i = 0; i < x.array->nelts; i++) {
|
for (i = 0; i < x.array->nelts; i++) {
|
||||||
const char *name = APR_ARRAY_IDX(x.array, i, const char *);
|
const char *name = APR_ARRAY_IDX(x.array, i, const char *);
|
||||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO()
|
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(02807)
|
||||||
"Removing header '%s' listed in Connection header",
|
"Removing header '%s' listed in Connection header",
|
||||||
name);
|
name);
|
||||||
if (!strcasecmp(name, "close")) {
|
if (!strcasecmp(name, "close")) {
|
||||||
|
Reference in New Issue
Block a user