DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8122>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8122

SSLMutex option settings not honoured





------- Additional Comments From [EMAIL PROTECTED]  2003-03-15 18:26 -------
Sounds ok looking at the code.

In ssl_engine_mutex.c it would have been nice to us verbose eror reporting in
ssl_mutex_init and friends. See below for the relevant code of my original patch
(it did help a lot while tracking bugs):

+    status = apr_global_mutex_create(&mc->pMutex, mc->szMutexFile,
mc->nMutexMech, p);
+    if (status != APR_SUCCESS) {
+        char buf[120];
+
+        apr_strerror(status, buf, sizeof(buf));
+        if (mc->szMutexFile)
+            ssl_log(s, SSL_LOG_ERROR,
+                       "Failed to create global mutex lock using file `%s': 
%s",
+                        mc->szMutexFile, buf);
+        else
+            ssl_log(s, SSL_LOG_ERROR,
+                       "Failed to create global mutex lock: %s", buf);

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to