summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2017-06-09 15:18:20 +0200
committerThomas Haller <thaller@redhat.com>2017-06-09 15:34:31 +0200
commit126b0874f19fa3647c0343d73dfdb48d6154bc08 (patch)
treee71c78d2191fe892c8a155b8e32bbc020f3afcb6
parentaa099906f93264bda3ae34fca4dfbdde5455b2bb (diff)
downloadNetworkManager-126b0874f19fa3647c0343d73dfdb48d6154bc08.tar.gz
cli: fix output of iface in overview output
Fixes: f14845cc200e21ed3aafadc2f9456cb0e2791f56 https://bugzilla.redhat.com/show_bug.cgi?id=1460219
-rw-r--r--clients/cli/general.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/clients/cli/general.c b/clients/cli/general.c
index 7fa982fd2d..4179bc9778 100644
--- a/clients/cli/general.c
+++ b/clients/cli/general.c
@@ -1197,7 +1197,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));