| 97 | } |
| 98 | |
| 99 | int ssl_mutex_off(server_rec *s) |
| 100 | { |
| 101 | SSLModConfigRec *mc = myModConfig(s); |
| 102 | apr_status_t rv; |
| 103 | |
| 104 | if ((rv = apr_global_mutex_unlock(mc->pMutex)) != APR_SUCCESS) { |
| 105 | ap_log_error(APLOG_MARK, APLOG_WARNING, rv, s, APLOGNO(02027) |
| 106 | "Failed to release SSL session cache lock"); |
| 107 | return FALSE; |
| 108 | } |
| 109 | return TRUE; |
| 110 | } |
| 111 |
no test coverage detected