manoj       99/04/26 15:36:36

  Modified:    pthreads/src/modules/standard mod_status.c
  Log:
  Blah, another mod_status bug I missed.
  
  Revision  Changes    Path
  1.10      +1 -1      apache-apr/pthreads/src/modules/standard/mod_status.c
  
  Index: mod_status.c
  ===================================================================
  RCS file: /home/cvs/apache-apr/pthreads/src/modules/standard/mod_status.c,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -u -r1.9 -r1.10
  --- mod_status.c      1999/04/26 22:31:04     1.9
  +++ mod_status.c      1999/04/26 22:36:35     1.10
  @@ -468,7 +468,7 @@
            ap_rputs("PID Key: <br>\n", r);
            ap_rputs("<PRE>\n", r);
            for (i = 0; i < HARD_SERVER_LIMIT; ++i) {
  -         for (j = 0; j < HARD_SERVER_LIMIT; ++j) {
  +         for (j = 0; j < HARD_THREAD_LIMIT; ++j) {
                if (stat_buffer[i][j] != '.') {
                    ap_rprintf(r, "   %d,%d in state: %c ", pid_buffer[i],
                           tid_buffer[i][j], stat_buffer[i][j]);
  
  
  

Reply via email to