plugin-loader: Correctly read dlopen_use_rtld_now option

Fixes: 305c4aa82c ("plugin-loader: Optionally use RTLD_NOW with dlopen()")
This commit is contained in:
Tobias Brunner
2017-09-18 12:07:26 +02:00
parent d3e1beaad5
commit ddfb5dd44a
+1 -1
View File
@@ -438,7 +438,7 @@ static plugin_entry_t *load_plugin(private_plugin_loader_t *this, char *name,
}
}
if (lib->settings->get_bool(lib->settings, "%s.dlopen_use_rtld_now",
lib->ns, FALSE))
FALSE, lib->ns))
{
flag = RTLD_NOW;
}