summaryrefslogtreecommitdiffstats
path: root/modules/ssl/ssl_util.c
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@apache.org>2001-08-24 07:31:51 +0200
committerDoug MacEachern <dougm@apache.org>2001-08-24 07:31:51 +0200
commit00bd672b672f91173c8ff4d772e7ae38527381c5 (patch)
tree27e6cd522fc3d11f168884d57f0c944b3e6150e9 /modules/ssl/ssl_util.c
parentSanitize all the wacky indentation in this block prior to commiting (diff)
downloadapache2-00bd672b672f91173c8ff4d772e7ae38527381c5.tar.xz
apache2-00bd672b672f91173c8ff4d772e7ae38527381c5.zip
change APR_LOCKALL to APR_INTRAPROCESS for crypto locks
PR: Obtained from: Submitted by: Justin Erenkrantz <jerenkrantz@ebuilt.com> Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90618 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/ssl/ssl_util.c')
-rw-r--r--modules/ssl/ssl_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ssl/ssl_util.c b/modules/ssl/ssl_util.c
index 6c6bfb015b..75a64bdda9 100644
--- a/modules/ssl/ssl_util.c
+++ b/modules/ssl/ssl_util.c
@@ -381,7 +381,7 @@ void ssl_util_thread_setup(server_rec *s, apr_pool_t *p)
*/
for (i = 0; i < CRYPTO_NUM_LOCKS; i++) {
lock_count[i]=0;
- apr_lock_create(&(lock_cs[i]), APR_MUTEX, APR_LOCKALL,
+ apr_lock_create(&(lock_cs[i]), APR_MUTEX, APR_INTRAPROCESS,
mc->szMutexFile, p);
}