aboutsummaryrefslogtreecommitdiffstats
path: root/src/charon/daemon.c
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2009-09-08 19:48:34 +0200
committerMartin Willi <martin@strongswan.org>2009-09-10 18:52:42 +0200
commit5b03a350fc7093aa6984dfcafede98fbb62809eb (patch)
tree0f0ae851da9a7b454913710da1b068afe538f97a /src/charon/daemon.c
parent6de28173f08e9ab0707698cb97ec54132b03cfd1 (diff)
downloadstrongswan-5b03a350fc7093aa6984dfcafede98fbb62809eb.tar.bz2
strongswan-5b03a350fc7093aa6984dfcafede98fbb62809eb.tar.xz
use NULL to load plugins from default plugin directory
Diffstat (limited to 'src/charon/daemon.c')
-rw-r--r--src/charon/daemon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charon/daemon.c b/src/charon/daemon.c
index 260fc5ead..258043032 100644
--- a/src/charon/daemon.c
+++ b/src/charon/daemon.c
@@ -491,7 +491,7 @@ static bool initialize(private_daemon_t *this, bool syslog, level_t levels[])
this->public.traps = trap_manager_create();
/* load plugins, further infrastructure may need it */
- if (!lib->plugins->load(lib->plugins, IPSEC_PLUGINDIR,
+ if (!lib->plugins->load(lib->plugins, NULL,
lib->settings->get_str(lib->settings, "charon.load", PLUGINS)))
{
return FALSE;