From 971a8181f68596d04ef9f81d2c3ad32d73f56de8 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Mon, 6 Jun 2016 10:03:19 +0200 Subject: [PATCH] nmcli: fix VPN export to find plugin by service-type --- clients/cli/connections.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/cli/connections.c b/clients/cli/connections.c index 0c61667d9..5b0261c4d 100644 --- a/clients/cli/connections.c +++ b/clients/cli/connections.c @@ -10790,7 +10790,7 @@ do_connection_export (NmCli *nmc, int argc, char **argv) type = nm_setting_vpn_get_service_type (nm_connection_get_setting_vpn (connection)); /* Export VPN configuration */ - plugin = nm_vpn_lookup_plugin (type, NULL, &error); + plugin = nm_vpn_lookup_plugin (NULL, type, &error); if (!plugin) { g_string_printf (nmc->return_text, _("Error: failed to load VPN plugin: %s."), error->message);