From be4e1000e8c88753e9ca0fee38c15712e5c1dd16 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Fri, 9 Jun 2017 15:18:20 +0200 Subject: [PATCH] cli: fix output of iface in overview output Fixes: f14845cc200e21ed3aafadc2f9456cb0e2791f56 https://bugzilla.redhat.com/show_bug.cgi?id=1460219 (cherry picked from commit 126b0874f19fa3647c0343d73dfdb48d6154bc08) --- clients/cli/general.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/cli/general.c b/clients/cli/general.c index 12e76efd62..4406c849c3 100644 --- a/clients/cli/general.c +++ b/clients/cli/general.c @@ -1139,7 +1139,7 @@ device_overview (NmCli *nmc, NMDevice *device) if ( nm_device_get_ip_iface (device) && g_strcmp0 (nm_device_get_ip_iface (device), nm_device_get_iface (device)) && g_strcmp0 (nm_device_get_ip_iface (device), "")) - g_string_append_printf (outbuf, "%s %s,", _("iface"), nm_device_get_ip_iface (device)); + g_string_append_printf (outbuf, "%s %s, ", _("iface"), nm_device_get_ip_iface (device)); if (nm_device_get_physical_port_id (device)) g_string_append_printf (outbuf, "%s %s, ", _("port"), nm_device_get_physical_port_id (device));