]> git.pld-linux.org Git - packages/apache1.git/blame - apache1-rwrite-debug.patch
rel 15; builds
[packages/apache1.git] / apache1-rwrite-debug.patch
CommitLineData
677b7443
ER
1--- apache_1.3.37/src/main/http_protocol.c 2006-11-23 15:05:03.776638483 +0200
2+++ apache_1.3.37/src/main/http_protocol.c 2006-11-23 15:07:14.679573858 +0200
3@@ -2486,7 +2486,7 @@
4 else if (w < 0) {
5 if (!r->connection->aborted) {
6 ap_log_rerror(APLOG_MARK, APLOG_INFO, r,
7- "client stopped connection before send body completed");
8+ "client stopped connection before send body completed (url: %s?%s)", r->uri, r->args ? r->args : "");
9 ap_bsetflag(r->connection->client, B_EOUT, 1);
10 r->connection->aborted = 1;
11 }
12@@ -2572,7 +2572,7 @@
13 /* we need to block, so flush the output first */
14 if (ap_bflush(r->connection->client) < 0) {
15 ap_log_rerror(APLOG_MARK, APLOG_INFO, r,
16- "client stopped connection before send body completed");
17+ "client stopped connection before send body completed (url: %s?%s)", r->uri, r->args ? r->args : "");
18 ap_bsetflag(r->connection->client, B_EOUT, 1);
19 r->connection->aborted = 1;
20 break;
21@@ -2610,7 +2610,7 @@
22 else if (w < 0) {
23 if (!r->connection->aborted) {
24 ap_log_rerror(APLOG_MARK, APLOG_INFO, r,
25- "client stopped connection before send body completed");
26+ "client stopped connection before send body completed (url: %s?%s)", r->uri, r->args ? r->args : "");
27 ap_bsetflag(r->connection->client, B_EOUT, 1);
28 r->connection->aborted = 1;
29 }
30@@ -2735,7 +2735,7 @@
190c2e8e
ER
31 if (n < 0) {
32 if (!r->connection->aborted) {
33 ap_log_rerror(APLOG_MARK, APLOG_INFO, r,
34- "client stopped connection before rwrite completed");
35+ "client stopped connection before rwrite completed (url: %s?%s)", r->uri, r->args ? r->args : "");
36 ap_bsetflag(r->connection->client, B_EOUT, 1);
37 r->connection->aborted = 1;
38 }
This page took 0.113439 seconds and 4 git commands to generate.