> 
> Are you _REALLY_ sure you've applied the patch successfully and recompiled and
> restarted your server? That was the only mutex-related change, so IT HAS TO
> work with this patch as long as it's true that it worked before with 2.3.6 as
> others reported.

Well, I'm quite sure I did the right thing.
I applied the following patch to ssl_engine_mutex.c in the Apache Source tree:
########################################################
diff -u -r1.22 ssl_engine_mutex.c
--- ssl_engine_mutex.c  1999/07/25 10:00:00     1.22
+++ ssl_engine_mutex.c  1999/07/27 05:59:53
@@ -77,11 +77,11 @@

if (mc->nMutexMode == SSL_MUTEXMODE_FILE) {
ssl_mutex_file_create(s, p);
-        ap_register_cleanup(p, (void *)s, ssl_mutex_file_remove,
ssl_mutex_file_remove);
+        ap_register_cleanup(p, (void *)s, ssl_mutex_file_remove,
ap_null_cleanup);
}
else if (mc->nMutexMode == SSL_MUTEXMODE_SEM) {
ssl_mutex_sem_create(s, p);
-        ap_register_cleanup(p, (void *)s, ssl_mutex_sem_remove,
ssl_mutex_sem_remove);
+        ap_register_cleanup(p, (void *)s, ssl_mutex_sem_remove,
ap_null_cleanup);
}
return;
}
#######################################################
Then:
make
make install-programs
apachectl stop
apachectl startssl

I will however try again, if you think this patch should fix it.

Bye
Tim


______________________________________________________________________
Apache Interface to OpenSSL (mod_ssl)                   www.modssl.org
User Support Mailing List                      [EMAIL PROTECTED]
Automated List Manager                            [EMAIL PROTECTED]

Reply via email to