Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 69771 invoked by uid 500); 5 Apr 2003 19:48:03 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 69735 invoked by uid 500); 5 Apr 2003 19:48:03 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 5 Apr 2003 19:48:02 -0000 Message-ID: <20030405194802.55314.qmail@icarus.apache.org> From: minfrin@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/server scoreboard.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N minfrin 2003/04/05 11:48:02 Modified: server Tag: APACHE_2_0_BRANCH scoreboard.c Log: - Clarify an error message to be more useful Revision Changes Path No revision No revision 1.68.2.2 +2 -2 httpd-2.0/server/scoreboard.c Index: scoreboard.c =================================================================== RCS file: /home/cvs/httpd-2.0/server/scoreboard.c,v retrieving revision 1.68.2.1 retrieving revision 1.68.2.2 diff -u -r1.68.2.1 -r1.68.2.2 --- scoreboard.c 3 Feb 2003 17:32:01 -0000 1.68.2.1 +++ scoreboard.c 5 Apr 2003 19:48:02 -0000 1.68.2.2 @@ -179,8 +179,8 @@ rv = apr_shm_create(&ap_scoreboard_shm, scoreboard_size, fname, pool); if (rv != APR_SUCCESS) { ap_log_error(APLOG_MARK, APLOG_CRIT, rv, NULL, - "unable to create scoreboard " - "(name-based shared memory failure)"); + "unable to create scoreboard using filename %s " + "(name-based shared memory failure)", fname); return rv; } #endif /* APR_HAS_SHARED_MEMORY */