1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Quit hiding the previous request information while the subsequent request is partially read

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@775341 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
William A. Rowe Jr
2009-05-15 21:09:21 +00:00
parent 9a84fd27d6
commit 2f556f331e

View File

@@ -750,19 +750,15 @@ static int status_handler(request_rec *r)
(float)conn_bytes / KBYTE, (float) my_bytes / MBYTE, (float)conn_bytes / KBYTE, (float) my_bytes / MBYTE,
(float)bytes / MBYTE); (float)bytes / MBYTE);
if (ws_record->status == SERVER_BUSY_READ) ap_rprintf(r, "</td><td>%s</td><td nowrap>%s</td>"
ap_rprintf(r, "<td nowrap>%s</td></tr>\n\n",
"</td><td>?</td><td nowrap>?</td><td nowrap>..reading.. </td></tr>\n\n"); ap_escape_html(r->pool,
else ws_record->client),
ap_rprintf(r, ap_escape_html(r->pool,
"</td><td>%s</td><td nowrap>%s</td><td nowrap>%s</td></tr>\n\n", ws_record->vhost),
ap_escape_html(r->pool, ap_escape_html(r->pool,
ws_record->client), ap_escape_logitem(r->pool,
ap_escape_html(r->pool, ws_record->request)));
ws_record->vhost),
ap_escape_html(r->pool,
ap_escape_logitem(r->pool,
ws_record->request)));
} /* no_table_report */ } /* no_table_report */
} /* for (j...) */ } /* for (j...) */
} /* for (i...) */ } /* for (i...) */