From: Jeff Trawick Date: Sat, 29 Dec 2001 23:16:24 +0000 (+0000) Subject: handle the disappearance of apr_lock_create_np() and X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07a1a6ce97f797800e9e02fb14b891ad887c781c;p=thirdparty%2Fapache%2Fhttpd.git 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/modules/ssl@92653 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/ssl_engine_mutex.c b/ssl_engine_mutex.c index 942e399b8e6..adb54a4c778 100644 --- a/ssl_engine_mutex.c +++ b/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;