From 2b37ee2b7a70d50f2d9ddef8c16a18b390a05051 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Klime=C5=A1?= Date: Thu, 15 May 2014 13:41:31 +0200 Subject: [PATCH] cli: fix completion of interfaces in editor for "activate" command --- cli/src/connections.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/connections.c b/cli/src/connections.c index eb02f6b906..77b608f876 100644 --- a/cli/src/connections.c +++ b/cli/src/connections.c @@ -5430,7 +5430,7 @@ gen_compat_devices (char *text, int state) compatible_devices = g_new (const char *, devices->len + 1); for (i = 0; i < devices->len; i++) { NMDevice *dev = g_ptr_array_index (devices, i); - const char *ifname = nm_device_get_ip_iface (dev); + const char *ifname = nm_device_get_iface (dev); NMDevice *device = NULL; const char *spec_object = NULL;