rbb         99/03/19 06:02:04

  Modified:    pthreads/src/main http_main.c
  Log:
  Added some error logging logic.
  
  Revision  Changes    Path
  1.62      +5 -5      apache-apr/pthreads/src/main/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /home/cvs/apache-apr/pthreads/src/main/http_main.c,v
  retrieving revision 1.61
  retrieving revision 1.62
  diff -u -r1.61 -r1.62
  --- http_main.c       1999/03/17 17:01:20     1.61
  +++ http_main.c       1999/03/19 14:02:03     1.62
  @@ -1811,11 +1811,11 @@
                                      (request_rec *) NULL);
        if (csd >= 0) {
            if (queue_push(&csd_queue, csd, &sa_client) != 0) {
  -           /*                ap_log_error*/
  -         }  
  -      } else{
  -        /*       ap_log_error()*/
  -      }
  +             ap_log_error(APLOG_MARK, APLOG_ERR, ap_get_server_conf(),
  +                      "queue_push:  couldn't put new connection on"
  +                         "queue");
  +         }
  +        } 
       }
       ap_update_child_status(my_pid, my_tid, SERVER_DEAD, (request_rec *) 
NULL);
       return NULL;
  
  
  

Reply via email to