Commit 2fd35e50 authored by Joe Orton's avatar Joe Orton
Browse files

* modules/ssl/ssl_engine_mutex.c (ssl_mutex_on, ssl_mutex_off):

Improve error messages.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@106573 13f79535-47bb-0310-9956-ffa450edef68
parent 04b03979
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -100,7 +100,7 @@ int ssl_mutex_on(server_rec *s)
        return TRUE;
    if ((rv = apr_global_mutex_lock(mc->pMutex)) != APR_SUCCESS) {
        ap_log_error(APLOG_MARK, APLOG_WARNING, rv, s,
                     "Failed to acquire global mutex lock");
                     "Failed to acquire SSL session cache lock");
        return FALSE;
    }
    return TRUE;
@@ -115,7 +115,7 @@ int ssl_mutex_off(server_rec *s)
        return TRUE;
    if ((rv = apr_global_mutex_unlock(mc->pMutex)) != APR_SUCCESS) {
        ap_log_error(APLOG_MARK, APLOG_WARNING, rv, s,
                     "Failed to release global mutex lock");
                     "Failed to release SSL session cache lock");
        return FALSE;
    }
    return TRUE;