diff options
Diffstat (limited to 'src/pluto/plutomain.c')
-rw-r--r-- | src/pluto/plutomain.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)); } |