summaryrefslogtreecommitdiffstats
path: root/modules/ssl/ssl_engine_mutex.c
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2001-12-30 00:16:24 +0100
committerJeff Trawick <trawick@apache.org>2001-12-30 00:16:24 +0100
commit57b42f96ac6f6755687dd69f8a1a93868590f774 (patch)
tree9753b4608da472613fbbb35f8911867f75bb8593 /modules/ssl/ssl_engine_mutex.c
parentFix to make xbithack work again (diff)
downloadapache2-57b42f96ac6f6755687dd69f8a1a93868590f774.tar.xz
apache2-57b42f96ac6f6755687dd69f8a1a93868590f774.zip
handle the disappearance of apr_lock_create_np() and
apr_proc_mutex_create_np() and the new parameter to apr_lock_create() and apr_proc_mutex_create() git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92653 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/ssl/ssl_engine_mutex.c')
-rw-r--r--modules/ssl/ssl_engine_mutex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ssl/ssl_engine_mutex.c b/modules/ssl/ssl_engine_mutex.c
index 942e399b8e..adb54a4c77 100644
--- a/modules/ssl/ssl_engine_mutex.c
+++ b/modules/ssl/ssl_engine_mutex.c
@@ -68,7 +68,7 @@ int ssl_mutex_init(server_rec *s, apr_pool_t *p)
if (mc->nMutexMode == SSL_MUTEXMODE_NONE)
return TRUE;
- if (apr_lock_create(&mc->pMutex, APR_MUTEX, APR_LOCKALL,
+ if (apr_lock_create(&mc->pMutex, APR_MUTEX, APR_LOCKALL, APR_LOCK_DEFAULT,
mc->szMutexFile, p) != APR_SUCCESS)
return FALSE;
return TRUE;