diff options
author | Tobias Brunner <tobias@strongswan.org> | 2009-08-14 13:30:59 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2009-08-14 13:30:59 +0200 |
commit | 3901937d142cc9dc81ee22d99c8c596e9317c139 (patch) | |
tree | fcb90d9b12c38f4466b1742e5dd04324ab64278b /src/charon/plugins/stroke/stroke_cred.c | |
parent | 8b6a5ce5ba297a84058161ad01e9cf6abfdf71a3 (diff) | |
download | strongswan-3901937d142cc9dc81ee22d99c8c596e9317c139.tar.bz2 strongswan-3901937d142cc9dc81ee22d99c8c596e9317c139.tar.xz |
OpenSolaris defines MUTEX_DEFAULT therefore we rename the members of the enums mutex/condvar/rwlock_type_t.
Diffstat (limited to 'src/charon/plugins/stroke/stroke_cred.c')
-rw-r--r-- | src/charon/plugins/stroke/stroke_cred.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charon/plugins/stroke/stroke_cred.c b/src/charon/plugins/stroke/stroke_cred.c index bd6d289b9..31bcfe9f4 100644 --- a/src/charon/plugins/stroke/stroke_cred.c +++ b/src/charon/plugins/stroke/stroke_cred.c @@ -1125,7 +1125,7 @@ stroke_cred_t *stroke_cred_create() this->certs = linked_list_create(); this->shared = linked_list_create(); this->private = linked_list_create(); - this->lock = rwlock_create(RWLOCK_DEFAULT); + this->lock = rwlock_create(RWLOCK_TYPE_DEFAULT); load_certs(this); load_secrets(this, SECRETS_FILE, 0); |