summaryrefslogtreecommitdiffstats
path: root/server/scoreboard.c
diff options
context:
space:
mode:
authorMartin Kraemer <martin@apache.org>2003-03-24 09:51:22 +0100
committerMartin Kraemer <martin@apache.org>2003-03-24 09:51:22 +0100
commitd8f10577ef9c190fe233c3da540cbefe235c020e (patch)
tree8a3f43b9be177b0179c204e8890502721914f3a7 /server/scoreboard.c
parent Typos: arguments & explicitly. (diff)
downloadapache2-d8f10577ef9c190fe233c3da540cbefe235c020e.tar.xz
apache2-d8f10577ef9c190fe233c3da540cbefe235c020e.zip
On failures, try to add a hint what went wrong
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@99055 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--server/scoreboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/scoreboard.c b/server/scoreboard.c
index 3e9057ed53..80cb4b8389 100644
--- a/server/scoreboard.c
+++ b/server/scoreboard.c
@@ -179,8 +179,8 @@ static apr_status_t create_namebased_scoreboard(apr_pool_t *pool,
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 \"%s\" "
+ "(name-based shared memory failure)", fname);
return rv;
}
#endif /* APR_HAS_SHARED_MEMORY */