| 385 | } |
| 386 | |
| 387 | static void log_create_failure(apr_status_t rv, server_rec *s, const char *type, |
| 388 | const char *fname) |
| 389 | { |
| 390 | ap_log_error(APLOG_MARK, APLOG_EMERG, rv, s, APLOGNO(00023) |
| 391 | "Couldn't create the %s mutex %s%s%s", type, |
| 392 | fname ? "(file " : "", |
| 393 | fname ? fname : "", |
| 394 | fname ? ")" : ""); |
| 395 | } |
| 396 | |
| 397 | #ifdef AP_NEED_SET_MUTEX_PERMS |
| 398 | static void log_perms_failure(apr_status_t rv, server_rec *s, const char *type) |
no test coverage detected