]> granicus.if.org Git - apache/commitdiff
Quit hiding the previous request information while the subsequent request is partiall...
authorWilliam A. Rowe Jr <wrowe@apache.org>
Fri, 15 May 2009 21:09:21 +0000 (21:09 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Fri, 15 May 2009 21:09:21 +0000 (21:09 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@775341 13f79535-47bb-0310-9956-ffa450edef68

modules/generators/mod_status.c

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