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/resolv_conf/resolv_conf_handler.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/resolv_conf/resolv_conf_handler.c')
-rw-r--r-- | src/charon/plugins/resolv_conf/resolv_conf_handler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charon/plugins/resolv_conf/resolv_conf_handler.c b/src/charon/plugins/resolv_conf/resolv_conf_handler.c index 19e3b3275..749cfbc5b 100644 --- a/src/charon/plugins/resolv_conf/resolv_conf_handler.c +++ b/src/charon/plugins/resolv_conf/resolv_conf_handler.c @@ -183,7 +183,7 @@ resolv_conf_handler_t *resolv_conf_handler_create() this->public.handler.release = (void(*)(attribute_handler_t*, ike_sa_t*, configuration_attribute_type_t, chunk_t))release; this->public.destroy = (void(*)(resolv_conf_handler_t*))destroy; - this->mutex = mutex_create(MUTEX_DEFAULT); + this->mutex = mutex_create(MUTEX_TYPE_DEFAULT); this->file = lib->settings->get_str(lib->settings, "charon.plugins.resolv-conf.file", RESOLV_CONF); |