aboutsummaryrefslogtreecommitdiffstats
path: root/src/openac
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2013-06-28 10:44:15 +0200
committerTobias Brunner <tobias@strongswan.org>2013-06-28 10:44:15 +0200
commitb18a53171537f81e8dc4a094a5368bdd9d3c7e4f (patch)
tree27086abd13eb58d70a192321904d114957e0c56a /src/openac
parent9da142b4dc151d4d9c1db2fb55b3a5203c1f1c8c (diff)
downloadstrongswan-b18a53171537f81e8dc4a094a5368bdd9d3c7e4f.tar.bz2
strongswan-b18a53171537f81e8dc4a094a5368bdd9d3c7e4f.tar.xz
plugin-loader: Removed unused path argument of load() method
Multiple additional search paths can be added with the add_path() method.
Diffstat (limited to 'src/openac')
-rw-r--r--src/openac/openac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openac/openac.c b/src/openac/openac.c
index 7b81d6cea..7074d44be 100644
--- a/src/openac/openac.c
+++ b/src/openac/openac.c
@@ -238,7 +238,7 @@ int main(int argc, char **argv)
fprintf(stderr, "integrity check of openac failed\n");
exit(SS_RC_DAEMON_INTEGRITY);
}
- if (!lib->plugins->load(lib->plugins, NULL,
+ if (!lib->plugins->load(lib->plugins,
lib->settings->get_str(lib->settings, "openac.load", PLUGINS)))
{
exit(SS_RC_INITIALIZATION_FAILED);