From: Joe Orton Date: Thu, 25 Nov 2004 13:02:31 +0000 (+0000) Subject: * modules/ssl/ssl_engine_mutex.c (ssl_mutex_on, ssl_mutex_off): X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=317c7cd57a03d00c31762169814439aaaa8167ce;p=thirdparty%2Fapache%2Fhttpd.git * 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 --- diff --git a/ssl_engine_mutex.c b/ssl_engine_mutex.c index 9e69879a60e..a4417240646 100644 --- a/ssl_engine_mutex.c +++ b/ssl_engine_mutex.c @@ -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;