Return-Path: Delivered-To: apache-cvs-archive@hyperreal.org Received: (qmail 28850 invoked by uid 6000); 19 Mar 1999 14:02:07 -0000 Received: (qmail 28837 invoked by alias); 19 Mar 1999 14:02:05 -0000 Delivered-To: apache-apr-cvs@hyperreal.org Received: (qmail 28832 invoked by uid 236); 19 Mar 1999 14:02:04 -0000 Date: 19 Mar 1999 14:02:04 -0000 Message-ID: <19990319140204.28831.qmail@hyperreal.org> From: rbb@hyperreal.org To: apache-apr-cvs@hyperreal.org Subject: cvs commit: apache-apr/pthreads/src/main http_main.c Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org 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;