strongswan.org
Wiki/Project Management
Downloads
Gitweb
projects
/
strongswan.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3c0630a
)
Provide recursive mutex' just in case the PKCS#11 library requires it
author
Martin Willi
<martin@revosec.ch>
Fri, 27 May 2011 14:07:58 +0000
(16:07 +0200)
committer
Martin Willi
<martin@revosec.ch>
Wed, 1 Jun 2011 10:03:44 +0000
(12:03 +0200)
src/libstrongswan/plugins/pkcs11/pkcs11_library.c
patch
|
blob
|
history
diff --git
a/src/libstrongswan/plugins/pkcs11/pkcs11_library.c
b/src/libstrongswan/plugins/pkcs11/pkcs11_library.c
index
6f79268
..
fa2f3c1
100644
(file)
--- a/
src/libstrongswan/plugins/pkcs11/pkcs11_library.c
+++ b/
src/libstrongswan/plugins/pkcs11/pkcs11_library.c
@@
-739,7
+739,7
@@
void pkcs11_library_trim(char *str, int len)
*/
static CK_RV CreateMutex(CK_VOID_PTR_PTR data)
{
- *data = mutex_create(MUTEX_TYPE_
DEFAULT
);
+ *data = mutex_create(MUTEX_TYPE_
RECURSIVE
);
return CKR_OK;
}