aboutsummaryrefslogtreecommitdiffstats
path: root/src/pluto
diff options
context:
space:
mode:
Diffstat (limited to 'src/pluto')
-rw-r--r--src/pluto/log.c2
-rw-r--r--src/pluto/plutomain.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pluto/log.c b/src/pluto/log.c
index c5f1776ec..1f5eafd9a 100644
--- a/src/pluto/log.c
+++ b/src/pluto/log.c
@@ -841,7 +841,7 @@ static void show_loaded_plugins()
buf[0] = '\0';
enumerator = lib->plugins->create_plugin_enumerator(lib->plugins);
- while (len < BUF_LEN && enumerator->enumerate(enumerator, &plugin))
+ while (len < BUF_LEN && enumerator->enumerate(enumerator, &plugin, NULL))
{
len += snprintf(&buf[len], BUF_LEN-len, "%s ", plugin->get_name(plugin));
}
diff --git a/src/pluto/plutomain.c b/src/pluto/plutomain.c
index b1ec7cb56..8aead3e3c 100644
--- a/src/pluto/plutomain.c
+++ b/src/pluto/plutomain.c
@@ -271,7 +271,7 @@ static void print_plugins()
buf[0] = '\0';
enumerator = lib->plugins->create_plugin_enumerator(lib->plugins);
- while (len < BUF_LEN && enumerator->enumerate(enumerator, &plugin))
+ while (len < BUF_LEN && enumerator->enumerate(enumerator, &plugin, NULL))
{
len += snprintf(&buf[len], BUF_LEN-len, "%s ", plugin->get_name(plugin));
}