summaryrefslogtreecommitdiffstats
path: root/server/scoreboard.c
diff options
context:
space:
mode:
authorNick Kew <niq@apache.org>2007-09-24 03:58:50 +0200
committerNick Kew <niq@apache.org>2007-09-24 03:58:50 +0200
commita30598a8a6a1130cedca9692b75e0bf4bf72ff08 (patch)
tree7deb4cf904a2925f8baa784892fbece9ad729870 /server/scoreboard.c
parentFix r578332 for backslashing filesystems, as noted by rpluem (diff)
downloadapache2-a30598a8a6a1130cedca9692b75e0bf4bf72ff08.tar.xz
apache2-a30598a8a6a1130cedca9692b75e0bf4bf72ff08.zip
PR 40037: try to avoid risk of misleading the lusers when they
can't initialise scoreboard after a crash. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@578620 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/scoreboard.c')
-rw-r--r--server/scoreboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/scoreboard.c b/server/scoreboard.c
index a91930633f..d35eac0044 100644
--- a/server/scoreboard.c
+++ b/server/scoreboard.c
@@ -165,7 +165,7 @@ 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 \"%s\" "
+ "unable to create or access scoreboard \"%s\" "
"(name-based shared memory failure)", fname);
return rv;
}
@@ -212,7 +212,7 @@ static apr_status_t open_scoreboard(apr_pool_t *pconf)
global_pool); /* anonymous shared memory */
if ((rv != APR_SUCCESS) && (rv != APR_ENOTIMPL)) {
ap_log_error(APLOG_MARK, APLOG_CRIT, rv, NULL,
- "Unable to create scoreboard "
+ "Unable to create or access scoreboard "
"(anonymous shared memory failure)");
return rv;
}