Changes with Apache 2.3.0
[ When backported to 2.2.x, remove entry from this file ]
+ *) scoreboard: improve error message on apr_shm_create failure
+ PR 40037 [Nick Kew]
+
*) mod_rewrite: Add the novary flag to RewriteCond.
[Ruediger Pluem]
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;
}
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;
}