summaryrefslogtreecommitdiffstats
path: root/src/openssl-thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/openssl-thread.c')
-rw-r--r--src/openssl-thread.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/openssl-thread.c b/src/openssl-thread.c
index c28ebfe..e7affe8 100644
--- a/src/openssl-thread.c
+++ b/src/openssl-thread.c
@@ -25,9 +25,12 @@
#include <pthread.h>
#include <openssl/crypto.h>
+#include "fusedav.h"
+#include "openssl-thread.h"
+
static pthread_mutex_t *mutexes;
-static void pthreads_locking_callback(int mode, int n, const char *file, int line) {
+static void pthreads_locking_callback(int mode, int n, __unused const char *file, __unused int line) {
if (mode & CRYPTO_LOCK)
pthread_mutex_lock(mutexes+n);
else