diff options
-rw-r--r-- | src/charon/bus/bus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charon/bus/bus.c b/src/charon/bus/bus.c index 5ec9114ed..1f51045f3 100644 --- a/src/charon/bus/bus.c +++ b/src/charon/bus/bus.c @@ -371,7 +371,7 @@ bus_t *bus_create() this->public.destroy = (void(*)(bus_t*)) destroy; this->listeners = linked_list_create(); - this->mutex = mutex_create(MUTEX_RECURSIVE); + this->mutex = mutex_create(MUTEX_DEFAULT); pthread_key_create(&this->thread_id, NULL); pthread_key_create(&this->thread_sa, NULL); |